summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/imgui/imconfig.h
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2018-01-03 09:02:33 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2018-01-03 09:26:51 +0000
commit8c9e5f0297faf3804484aae54ea57dcac647f742 (patch)
treea24ab8df18c7f7782a759de1920b78f64cf98c67 /src/3rdparty/imgui/imconfig.h
parente55fefab06cfd791e3ac9f244fb85059ce20a5d5 (diff)
Avoid alloca on INTEGRITY
...since it does not seem to exist there. Change-Id: Ibe1c2f1f383a6be5e8c240c59335fd9c5f178fa7 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'src/3rdparty/imgui/imconfig.h')
-rw-r--r--src/3rdparty/imgui/imconfig.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/3rdparty/imgui/imconfig.h b/src/3rdparty/imgui/imconfig.h
index 950b4cb..38fa1b3 100644
--- a/src/3rdparty/imgui/imconfig.h
+++ b/src/3rdparty/imgui/imconfig.h
@@ -6,6 +6,8 @@
#pragma once
+#include <qglobal.h>
+
//---- Define assertion handler. Defaults to calling assert().
//#define IM_ASSERT(_EXPR) MyAssert(_EXPR)