aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-09-06 13:10:36 +0000
committerDuncan Sands <baldrick@free.fr>2009-09-06 13:10:36 +0000
commit05866f7963d37ede6b99445b5b079874413b1ec7 (patch)
treee746cc2426c21ffbc4ff305f906620a9f4dcb3f5 /include
parent18f13c66bfb9cb2116be0f339fa955949dd60dd1 (diff)
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')
-rw-r--r--include/llvm/Support/FormattedStream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/FormattedStream.h b/include/llvm/Support/FormattedStream.h
index 768b8ed0ee..24a3546200 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