diff options
author | Duncan Sands <baldrick@free.fr> | 2009-09-06 13:10:36 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-09-06 13:10:36 +0000 |
commit | fbc8e46ee99c6bc13b4cef2dabea28fa578f6c52 (patch) | |
tree | e746cc2426c21ffbc4ff305f906620a9f4dcb3f5 /include/llvm/Support | |
parent | dc94fb91bc0e3dba99c31b3b7f3b8e5048b0e137 (diff) | |
download | external_llvm-fbc8e46ee99c6bc13b4cef2dabea28fa578f6c52.zip external_llvm-fbc8e46ee99c6bc13b4cef2dabea28fa578f6c52.tar.gz external_llvm-fbc8e46ee99c6bc13b4cef2dabea28fa578f6c52.tar.bz2 |
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
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/FormattedStream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/FormattedStream.h b/include/llvm/Support/FormattedStream.h index 768b8ed..24a3546 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 |