Skip to content

Commit

Permalink
fix #5331
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 7, 2012
1 parent 4ecd568 commit 59a08c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmake/SIPMacros.cmake
Expand Up @@ -94,7 +94,10 @@ MACRO(ADD_SIP_PYTHON_MODULE MODULE_NAME MODULE_SIP)
ADD_DEFINITIONS( /wd4996 /wd4701 /wd4702 )
ELSE(MSVC)
# disable all warnings
ADD_DEFINITIONS( -w -fpermissive )
ADD_DEFINITIONS( -w )
IF(NOT APPLE)
ADD_DEFINITIONS( -fpermissive )
ENDIF(NOT APPLE)
ENDIF(MSVC)
ENDIF(PEDANTIC)

Expand Down

0 comments on commit 59a08c4

Please sign in to comment.