aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/cplusplus/pp-engine.cpp
diff options
context:
space:
mode:
authorThiago Macieira <[email protected]>2012-05-20 21:11:10 +0200
committerThiago Macieira <[email protected]>2012-05-23 16:25:08 +0200
commite1cab763441f4dff1ca9b4da1dc459a49ee01bc8 (patch)
treeb87748a8f463c2729cc5101e6706c5778e34dbeb /src/libs/cplusplus/pp-engine.cpp
parent71260c3167c5faf35ad07bee01aedc1c0b7381c8 (diff)
Fix ICC warnings about commas at the end of enums
They're non-standard. Remove them. Change-Id: I58dc093c2459747ce0183685d325522fb51e86ab Reviewed-by: Kai Koehne <[email protected]>
Diffstat (limited to 'src/libs/cplusplus/pp-engine.cpp')
-rw-r--r--src/libs/cplusplus/pp-engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/pp-engine.cpp b/src/libs/cplusplus/pp-engine.cpp
index 693bcd54936..79a69eea577 100644
--- a/src/libs/cplusplus/pp-engine.cpp
+++ b/src/libs/cplusplus/pp-engine.cpp
@@ -77,7 +77,7 @@ namespace {
enum {
eagerExpansion = 1,
MAX_TOKEN_EXPANSION_COUNT = 5000,
- MAX_TOKEN_BUFFER_DEPTH = 16000, // for when macros are using some kind of right-folding, this is the list of "delayed" buffers waiting to be expanded after the current one.
+ MAX_TOKEN_BUFFER_DEPTH = 16000 // for when macros are using some kind of right-folding, this is the list of "delayed" buffers waiting to be expanded after the current one.
};
}