Skip to content

Commit

Permalink
+ suppress warnings with MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed May 5, 2016
1 parent 133ff16 commit 524cdec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Mod/Path/Gui/PreCompiled.h
Expand Up @@ -40,6 +40,10 @@

#include <Standard_math.hxx>

#ifdef _MSC_VER
# pragma warning( disable : 4273 )
#endif

#ifdef _PreComp_

// Python
Expand Down
1 change: 1 addition & 0 deletions src/Mod/Points/App/PreCompiled.h
Expand Up @@ -37,6 +37,7 @@
#ifdef _MSC_VER
# pragma warning( disable : 4181 )
# pragma warning( disable : 4305 )
# pragma warning( disable : 4522 )
#endif

#ifdef _PreComp_
Expand Down
1 change: 1 addition & 0 deletions src/Mod/ReverseEngineering/App/PreCompiled.h
Expand Up @@ -43,6 +43,7 @@
# pragma warning(disable : 4181)
# pragma warning(disable : 4275)
# pragma warning(disable : 4305)
# pragma warning(disable : 4522)
#endif

#ifdef _PreComp_
Expand Down

0 comments on commit 524cdec

Please sign in to comment.