Remove DECLARE_ENUM and DECLARE_ENUM_CLASS

lupdate seems to be fixed since quite a while now.
This commit is contained in:
Martchus 2019-06-10 16:20:56 +02:00
parent e18731d438
commit d9e498ba79
1 changed files with 0 additions and 14 deletions

View File

@ -84,20 +84,6 @@
#define LIB_HIDDEN __attribute__((visibility("hidden")))
#endif
/*!
* \def DECLARE_ENUM
* \brief Declares an enum without preventing lupdate to parse the file correctly.
*/
#define DECLARE_ENUM(name, base) enum name : base
/*!
* \def DECLARE_ENUM_CLASS
* \brief Declares an enum without preventing lupdate to parse the file correctly.
*/
#define DECLARE_ENUM_CLASS(name, base) enum class name : base
/*!
* \def VAR_UNUSED
* \brief Prevents warnings about unused variables.