From 88279f93f92d90b3a1b5aef01a67c6d0ed24e9c8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 15 Feb 2024 18:48:40 +0900 Subject: Replace QT_STATIC_CONST_* with actual definitions Signed-off-by: Michele Calgaro --- lib/cppparser/errors.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/cppparser/errors.h') 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; }; -- cgit v1.2.1