supress useless msvc warnings
This commit is contained in:
parent
dce4061ee6
commit
aa5d84196c
|
@ -25,6 +25,8 @@
|
|||
#pragma warning( disable : 4503 )
|
||||
//warning about changed pod initalising behaviour (boost blank in variant)
|
||||
#pragma warning( disable : 4345 )
|
||||
//warning about multiple assignemnt operators in Equation
|
||||
#pragma warning( disable : 4522 )
|
||||
|
||||
//disable boost concept checks, as some of them have alignment problems which bring msvc to an error
|
||||
//(for example DFSvisitor check in boost::graph::depht_first_search)
|
||||
|
|
|
@ -8,6 +8,7 @@ endif(FREECAD_ASSEMBLY_SOLVER_LOGS)
|
|||
|
||||
if(MSVC)
|
||||
add_definitions(/wd4503)
|
||||
add_definitions(/wd4181)
|
||||
endif(MSVC)
|
||||
|
||||
add_subdirectory(App)
|
||||
|
|
Loading…
Reference in New Issue
Block a user