[llvm-commits] [llvm] r77077 - /llvm/trunk/include/llvm/Support/raw_ostream.h

Dan Gohman gohman at apple.com
Sat Jul 25 09:01:07 PDT 2009


Author: djg
Date: Sat Jul 25 11:00:54 2009
New Revision: 77077

URL: http://llvm.org/viewvc/llvm-project?rev=77077&view=rev
Log:
Remove spurious semicolons.

Modified:
    llvm/trunk/include/llvm/Support/raw_ostream.h

Modified: llvm/trunk/include/llvm/Support/raw_ostream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/raw_ostream.h?rev=77077&r1=77076&r2=77077&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/raw_ostream.h (original)
+++ llvm/trunk/include/llvm/Support/raw_ostream.h Sat Jul 25 11:00:54 2009
@@ -78,7 +78,7 @@
   /// 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 @@
   /// after handling the error to avoid this behavior.
   void clear_error() {
     Error = false;
-  };
+  }
 
   //===--------------------------------------------------------------------===//
   // Configuration Interface





More information about the llvm-commits mailing list