ClangStaticAnalyzer: Fix gcc 4.x build for stdc++11-includes/main.cpp

Apparently the header file <codecvt> is unknown to gcc/mingw < 5.x.

Change-Id: Iad33fc6ffbab5a0a467c1c29db0df78896ca47b6
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Nikolai Kosjar
2016-07-07 11:55:45 +02:00
parent 1ca0a21d4e
commit 73f0ac3788

View File

@@ -16,7 +16,9 @@
#include <climits> #include <climits>
#include <clocale> #include <clocale>
#include <cmath> #include <cmath>
#if !defined(__GNUC__) || __GNUC__ >= 5
# include <codecvt> # include <codecvt>
#endif
#include <complex> #include <complex>
#include <condition_variable> #include <condition_variable>
#include <csetjmp> #include <csetjmp>