diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-30 23:29:28 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-30 23:29:28 +0900 |
| commit | e54f59a91e80697bdf262bdae8097c4219629167 (patch) | |
| tree | 658a8d267adf1f36ed522e18732cdd720fdb50a6 | |
| parent | 3dd6258e4aacd6fd8f2dfa336e9d9fbf6e6d1707 (diff) | |
| download | tdesdk-remove/dummy-comparison-operator.tar.gz tdesdk-remove/dummy-comparison-operator.zip | |
Remove use of TQ_DUMMY_COMPARISON_OPERATOR.remove/dummy-comparison-operator
The #define was 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>
| -rw-r--r-- | umbrello/umbrello/codeimport/kdevcppparser/driver.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp b/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp index b2a26622..a50f9688 100644 --- a/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp +++ b/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp @@ -331,7 +331,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" ); |
