1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Change "const static" to "static const", as warned about

by icc (#82).  Patch by Erick Tryzelaar.

llvm-svn: 81117
This commit is contained in:
Duncan Sands 2009-09-06 13:10:36 +00:00
parent 0d5fa5f018
commit 9987d81255

View File

@ -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