From 9809cbc919a0add46dcf31a2791c9f06defc31ed Mon Sep 17 00:00:00 2001 From: Leonardo Zide Date: Thu, 30 May 2019 12:26:10 -0700 Subject: [PATCH] Fix for Qt4. --- common/lc_global.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/lc_global.h b/common/lc_global.h index 14472bcd..19e2ab07 100644 --- a/common/lc_global.h +++ b/common/lc_global.h @@ -16,7 +16,11 @@ #include #ifndef Q_FALLTHROUGH -#define Q_FALLTHROUGH(); // fall through +#define Q_FALLTHROUGH(); +#endif + +#ifndef QT_STRINGIFY +#define QT_STRINGIFY(s) "" #endif #if !defined(EGL_VERSION_1_0) && !defined(GL_ES_VERSION_2_0) && !defined(GL_ES_VERSION_3_0) && !defined(QT_OPENGL_ES)