Fix GCC warning: extra `;' [-Wpedantic].
authorNick Lewycky <nicholas@mxc.ca>
Thu, 13 Aug 2015 18:10:19 +0000 (18:10 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Thu, 13 Aug 2015 18:10:19 +0000 (18:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244924 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/raw_ostream.cpp

index 3a37987378a0a4d616adc2377e70b11b2ba3b477..49ef400c5f2d7d32c1c8bc79cb72b942f58f8ae3 100644 (file)
@@ -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) {