mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fix compiler warning about __GXX_EXPERIMENTAL_CXX0X__ being undefined.
This commit is contained in:
parent
2287250a07
commit
4e6cf15a09
@ -25,7 +25,7 @@
|
||||
#include <QtCore/QtGlobal>
|
||||
|
||||
#ifdef Q_CC_CLANG
|
||||
# if __cplusplus >= 201103L || __GXX_EXPERIMENTAL_CXX0X__
|
||||
# if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
|
||||
# if ((__clang_major__ * 100) + __clang_minor__) >= 209 /* since clang 2.9 */
|
||||
# define COMPILER_DECLTYPE
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user