summaryrefslogtreecommitdiff
path: root/lib/Support/raw_ostream.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2015-08-13 18:10:19 +0000
committerNick Lewycky <nicholas@mxc.ca>2015-08-13 18:10:19 +0000
commit34509ffd82b5929133008e234c490cee8ca5d4b9 (patch)
tree60012d5ec9ee394885d1d454fec3db439a1aaf10 /lib/Support/raw_ostream.cpp
parent31f6eee816354985afaa63fabf61d88271627811 (diff)
Fix GCC warning: extra `;' [-Wpedantic].
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/raw_ostream.cpp')
-rw-r--r--lib/Support/raw_ostream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp
index 3a37987378a..49ef400c5f2 100644
--- a/lib/Support/raw_ostream.cpp
+++ b/lib/Support/raw_ostream.cpp
@@ -759,7 +759,7 @@ uint64_t raw_svector_ostream::current_pos() const { return OS.size(); }
void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
OS.append(Ptr, Ptr + Size);
-};
+}
void raw_svector_ostream::pwrite_impl(const char *Ptr, size_t Size,
uint64_t Offset) {