From: Dan Gohman Date: Sat, 25 Jul 2009 16:00:54 +0000 (+0000) Subject: Remove spurious semicolons. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=996b9d6aa9864c24178891adf29eeafd3f34d90c;p=oota-llvm.git Remove spurious semicolons. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77077 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 74a4206c235..3527984d2a6 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -78,7 +78,7 @@ public: /// whether an output error has been encountered. bool has_error() const { return Error; - }; + } /// clear_error - Set the flag read by has_error() to false. If the error /// flag is set at the time when this raw_ostream's destructor is called, @@ -86,7 +86,7 @@ public: /// after handling the error to avoid this behavior. void clear_error() { Error = false; - }; + } //===--------------------------------------------------------------------===// // Configuration Interface