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 | 6d46e7689ce7c527374fedbc2b1ba057ef48cab5 (patch) | |
| tree | 7952f5548dd2a31077d9968d1dec23cc597eed5a | |
| parent | d216b05e756b59a6cbddb24307248520e0aa8b6a (diff) | |
| download | bcm5719-llvm-6d46e7689ce7c527374fedbc2b1ba057ef48cab5.tar.gz bcm5719-llvm-6d46e7689ce7c527374fedbc2b1ba057ef48cab5.zip | |
Change "const static" to "static const", as warned about
by icc (#82). Patch by Erick Tryzelaar.
llvm-svn: 81117
| -rw-r--r-- | llvm/include/llvm/Support/FormattedStream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/FormattedStream.h b/llvm/include/llvm/Support/FormattedStream.h index 768b8ed0eed..24a3546200a 100644 --- a/llvm/include/llvm/Support/FormattedStream.h +++ b/llvm/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 |

