diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-06 11:05:43 +0100 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-07 10:49:03 +0100 |
commit | 8d8b05da5a93bcd8f45a2d1b796ff1e4b1102ff5 (patch) | |
tree | 4aa3c52c3c3d428ccb2da1a68ad54ce698b7a282 /src/shared/cplusplus/Keywords.cpp | |
parent | 6ca5f5f5f886449f88d1ff7085f640c46bbc8fb2 (diff) | |
download | qt-creator-8d8b05da5a93bcd8f45a2d1b796ff1e4b1102ff5.tar.gz |
Reworked parts of the QtPropertyDeclaration parsing and handling.
Diffstat (limited to 'src/shared/cplusplus/Keywords.cpp')
-rw-r--r-- | src/shared/cplusplus/Keywords.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/shared/cplusplus/Keywords.cpp b/src/shared/cplusplus/Keywords.cpp index 51757eb8c8..414221efa6 100644 --- a/src/shared/cplusplus/Keywords.cpp +++ b/src/shared/cplusplus/Keywords.cpp @@ -718,7 +718,6 @@ static inline int classify7(const char *s, bool q) { } } } -#ifdef ICHECK_BUILD else if (s[2] == 'E') { if (s[3] == 'N') { if (s[4] == 'U') { @@ -741,7 +740,6 @@ static inline int classify7(const char *s, bool q) { } } } -#endif } } return T_IDENTIFIER; @@ -1103,7 +1101,6 @@ static inline int classify10(const char *s, bool) { } } } -#ifdef ICHECK_BUILD else if (s[0] == 'Q') { if (s[1] == '_') { if (s[2] == 'P') { @@ -1125,7 +1122,6 @@ static inline int classify10(const char *s, bool) { } } } -#endif return T_IDENTIFIER; } @@ -1176,7 +1172,6 @@ static inline int classify11(const char *s, bool) { } } } -#ifdef ICHECK_BUILD else if (s[0] == 'Q') { if (s[1] == '_') { if (s[2] == 'I') { @@ -1200,7 +1195,6 @@ static inline int classify11(const char *s, bool) { } } } -#endif return T_IDENTIFIER; } @@ -1289,7 +1283,6 @@ static inline int classify13(const char *s, bool) { return T_IDENTIFIER; } -#ifdef ICHECK_BUILD static inline int classify15(const char *s, bool) { if (s[0] == 'Q') { if (s[1] == '_') { @@ -1324,7 +1317,6 @@ static inline int classify15(const char *s, bool) { } return T_IDENTIFIER; } -#endif static inline int classify16(const char *s, bool) { if (s[0] == 'r') { @@ -1377,9 +1369,7 @@ int Lexer::classify(const char *s, int n, bool q) { case 11: return classify11(s, q); case 12: return classify12(s, q); case 13: return classify13(s, q); -#ifdef ICHECK_BUILD case 15: return classify15(s, q); -#endif case 16: return classify16(s, q); default: return T_IDENTIFIER; } // switch |