Fix ICC warning about use of "defined" in a macro
qhash.cpp(89): warning #3199: "defined" is always false in a macro expansion in Microsoft mode Change-Id: I7de033f80b0e4431b7f1ffff13fc960bcbb17352 Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
This commit is contained in:
parent
d90536787b
commit
393c8d0b74
@ -150,7 +150,7 @@
|
||||
# define QT_FUNCTION_TARGET(x)
|
||||
# endif
|
||||
#else
|
||||
# define QT_COMPILER_SUPPORTS_HERE(x) defined(__ ## x ## __)
|
||||
# define QT_COMPILER_SUPPORTS_HERE(x) (__ ## x ## __)
|
||||
# define QT_FUNCTION_TARGET(x)
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user