diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-31 12:43:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-31 20:44:42 +0900 |
commit | d565c3570e67f6269fa1c96a084e5bd30fb054ad (patch) | |
tree | 740851e17a702b75e9b05f2895614c1a165c4dcb /poxml/antlr/src | |
parent | b53127648265c9dccdd00554388583c61dc09972 (diff) | |
download | tdesdk-d565c3570e67f6269fa1c96a084e5bd30fb054ad.tar.gz tdesdk-d565c3570e67f6269fa1c96a084e5bd30fb054ad.zip |
Remove support for Metrowerks compiler
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'poxml/antlr/src')
-rw-r--r-- | poxml/antlr/src/CharScanner.cpp | 24 | ||||
-rw-r--r-- | poxml/antlr/src/Parser.cpp | 1 | ||||
-rw-r--r-- | poxml/antlr/src/String.cpp | 1 | ||||
-rw-r--r-- | poxml/antlr/src/TreeParser.cpp | 1 |
4 files changed, 0 insertions, 27 deletions
diff --git a/poxml/antlr/src/CharScanner.cpp b/poxml/antlr/src/CharScanner.cpp index 8374651e..bcfb1682 100644 --- a/poxml/antlr/src/CharScanner.cpp +++ b/poxml/antlr/src/CharScanner.cpp @@ -51,30 +51,6 @@ #include <stdlib.h> ANTLR_BEGIN_NAMESPACE(antlr) -ANTLR_C_USING(exit) -ANTLR_C_USING(tolower) - -#ifdef ANTLR_REALLY_NO_STRCASECMP -// Apparently, neither strcasecmp nor stricmp is standard, and Codewarrior -// on the mac has neither... -inline int strcasecmp(const char *s1, const char *s2) -{ - while (true) - { - char c1 = tolower(*s1++), - c2 = tolower(*s2++); - if (c1 < c2) return -1; - if (c1 > c2) return 1; - if (c1 == 0) return 0; - } -} -#else -#ifdef NO_STRCASECMP -ANTLR_C_USING(stricmp) -#else -ANTLR_C_USING(strcasecmp) -#endif -#endif CharScannerLiteralsLess::CharScannerLiteralsLess(const CharScanner* theScanner) : scanner(theScanner) diff --git a/poxml/antlr/src/Parser.cpp b/poxml/antlr/src/Parser.cpp index 115bf228..debe5900 100644 --- a/poxml/antlr/src/Parser.cpp +++ b/poxml/antlr/src/Parser.cpp @@ -40,7 +40,6 @@ #include <stdlib.h> ANTLR_BEGIN_NAMESPACE(antlr) -ANTLR_C_USING(exit) /**A generic ANTLR parser (LL(k) for k>=1) containing a bunch of * utility routines useful at any lookahead depth. We distinguish between diff --git a/poxml/antlr/src/String.cpp b/poxml/antlr/src/String.cpp index 79d8cd27..92a47002 100644 --- a/poxml/antlr/src/String.cpp +++ b/poxml/antlr/src/String.cpp @@ -39,7 +39,6 @@ #endif ANTLR_BEGIN_NAMESPACE(antlr) -ANTLR_C_USING(sprintf) ANTLR_USE_NAMESPACE(std)string operator+(const ANTLR_USE_NAMESPACE(std)string& lhs,int rhs) { diff --git a/poxml/antlr/src/TreeParser.cpp b/poxml/antlr/src/TreeParser.cpp index 1e83bd77..52d8c50d 100644 --- a/poxml/antlr/src/TreeParser.cpp +++ b/poxml/antlr/src/TreeParser.cpp @@ -36,7 +36,6 @@ #include <stdlib.h> ANTLR_BEGIN_NAMESPACE(antlr) -ANTLR_C_USING(exit) TreeParser::TreeParser() : inputState(new TreeParserInputState()), traceDepth(0) |