[BPI] Replace weights by probabilities in BPI.
[oota-llvm.git] / include / llvm / Support / circular_raw_ostream.h
index 43829660acc960980b24885a7604a9ed08cd90d8..b46fd7f730c914b72c5c83d0817cfbab3fbd7b96 100644 (file)
@@ -17,8 +17,7 @@
 
 #include "llvm/Support/raw_ostream.h"
 
-namespace llvm 
-{
+namespace llvm {
   /// circular_raw_ostream - A raw_ostream which *can* save its data
   /// to a circular buffer, or can pass it through directly to an
   /// underlying stream if specified with a buffer of zero.
@@ -117,7 +116,7 @@ namespace llvm
       setStream(Stream, Owns);
     }
 
-    ~circular_raw_ostream() {
+    ~circular_raw_ostream() override {
       flush();
       flushBufferWithBanner();
       releaseStream();
@@ -154,5 +153,4 @@ namespace llvm
   };
 } // end llvm namespace
 
-
 #endif