From: Nick Lewycky Date: Thu, 13 Aug 2015 18:10:19 +0000 (+0000) Subject: Fix GCC warning: extra `;' [-Wpedantic]. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=34509ffd82b5929133008e234c490cee8ca5d4b9;p=oota-llvm.git Fix GCC warning: extra `;' [-Wpedantic]. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244924 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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) {