X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Fllvm%2FSupport%2Fraw_ostream.h;h=e5cc40e7d6b22d99790b572b0302378150b99abf;hb=2b762697564ca1e12e0e974e93ceeb4c3420505c;hp=d5374d4447a691afc1a453b6b3aa57f2db7d1138;hpb=4b885ee8e225e0be4d7dead8ad1b827971d53d8a;p=oota-llvm.git diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index d5374d4447a..e5cc40e7d6b 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -536,9 +536,9 @@ class buffer_ostream : public raw_svector_ostream { public: buffer_ostream(raw_ostream &OS) : raw_svector_ostream(Buffer), OS(OS) {} - ~buffer_ostream() { OS << str(); } + ~buffer_ostream() override { OS << str(); } }; } // end llvm namespace -#endif +#endif // LLVM_SUPPORT_RAW_OSTREAM_H