mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-29 09:38:48 -04:00
Fix compiler warning about __GXX_EXPERIMENTAL_CXX0X__ being undefined.
This commit is contained in:
parent
2287250a07
commit
4e6cf15a09
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue