From 05866f7963d37ede6b99445b5b079874413b1ec7 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Sun, 6 Sep 2009 13:10:36 +0000 Subject: [PATCH] Change "const static" to "static const", as warned about by icc (#82). Patch by Erick Tryzelaar. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81117 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/FormattedStream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Support/FormattedStream.h b/include/llvm/Support/FormattedStream.h index 768b8ed0eed..24a3546200a 100644 --- a/include/llvm/Support/FormattedStream.h +++ b/include/llvm/Support/FormattedStream.h @@ -26,12 +26,12 @@ namespace llvm public: /// DELETE_STREAM - Tell the destructor to delete the held stream. /// - const static bool DELETE_STREAM = true; + static const bool DELETE_STREAM = true; /// PRESERVE_STREAM - Tell the destructor to not delete the held /// stream. /// - const static bool PRESERVE_STREAM = false; + static const bool PRESERVE_STREAM = false; private: /// TheStream - The real stream we output to. We set it to be -- 2.34.1