diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-30 22:58:02 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-30 23:27:24 +0900 |
| commit | 98195ec8218519737d5f6e88ee9598d71fcbf8fa (patch) | |
| tree | 977539b286ab61f105a95f1d6d79c3bb276d0ab0 /lib | |
| parent | b387753da9f77da1aba8e85c0e48f3e351e54c90 (diff) | |
| download | tdevelop-master.tar.gz tdevelop-master.zip | |
The #defines were used for some very old compilers which had issues with template instantiation.
We are now using c++17 compilers, so this is unnecessary.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/cppparser/driver.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/cppparser/driver.cpp b/lib/cppparser/driver.cpp index 1c50ad9c..26a4d47e 100644 --- a/lib/cppparser/driver.cpp +++ b/lib/cppparser/driver.cpp @@ -605,7 +605,6 @@ void Driver::setupLexer( Lexer * lexer ) { lexer->addSkipWord( "TQ_SETS", SkipWordAndArguments ); lexer->addSkipWord( "Q_UNUSED", SkipWordAndArguments ); lexer->addSkipWord( "TQ_CREATE_INSTANCE", SkipWordAndArguments ); - lexer->addSkipWord( "TQ_DUMMY_COMPARISON_OPERATOR", SkipWordAndArguments ); lexer->addSkipWord( "ACTIVATE_SIGNAL_WITH_PARAM", SkipWordAndArguments ); lexer->addSkipWord( "TQ_INLINE_TEMPLATES" ); lexer->addSkipWord( "TQ_TEMPLATE_EXTERN" ); |
