diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:48:40 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-16 10:45:35 +0900 |
commit | 0ddca9b843f7633ce372bfef03446c418473192f (patch) | |
tree | 37f468140ab7c1ab83e8c2cbbbff850c892d4e24 /lib/cppparser/errors.h | |
parent | 6843dff0c846c386703d77b094ed576557a82036 (diff) | |
download | tdevelop-0ddca9b843f7633ce372bfef03446c418473192f.tar.gz tdevelop-0ddca9b843f7633ce372bfef03446c418473192f.zip |
Replace QT_STATIC_CONST_* with actual definitions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 88279f93f92d90b3a1b5aef01a67c6d0ed24e9c8)
Diffstat (limited to 'lib/cppparser/errors.h')
-rw-r--r-- | lib/cppparser/errors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cppparser/errors.h b/lib/cppparser/errors.h index 26b63f2c..d4e65e0b 100644 --- a/lib/cppparser/errors.h +++ b/lib/cppparser/errors.h @@ -35,9 +35,9 @@ struct Error{ class Errors{ public: - QT_STATIC_CONST Error& InternalError; - QT_STATIC_CONST Error& SyntaxError; - QT_STATIC_CONST Error& ParseError; + static const Error& InternalError; + static const Error& SyntaxError; + static const Error& ParseError; }; |