Re-enable parsing Qt code with LLVM (Qt for Python)
Exclude the check introduced by 0dc6cc0551
for clang compilers since there seems to be no equivalent option
-permissive- for the MSVC emulation.
Change-Id: I0468d8e2f2c988e604be6960f1b1f4760ea0c400
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
bb10
parent
4f53c703e4
commit
f6cbb1ae70
|
|
@ -97,7 +97,7 @@
|
|||
# endif
|
||||
#endif // __cplusplus
|
||||
|
||||
#if defined(__cplusplus) && defined(Q_CC_MSVC)
|
||||
#if defined(__cplusplus) && defined(Q_CC_MSVC) && !defined(Q_CC_CLANG)
|
||||
// On MSVC we require /permissive- set by user code. Check that we are
|
||||
// under its rules -- for instance, check that std::nullptr_t->bool is
|
||||
// not an implicit conversion, as per
|
||||
|
|
|
|||
Loading…
Reference in New Issue