Changeset 8676 for code/branches/unity_build/src
- Timestamp:
- May 30, 2011, 12:22:19 AM (13 years ago)
- Location:
- code/branches/unity_build/src/libraries/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/unity_build/src/libraries/util/CMakeLists.txt
r8558 r8676 42 42 ) 43 43 44 IF(MSVC)45 # Simply using #pragma warning(disable:4244) doesn't really disable it46 # if the warning occurs in a template in another file47 # Hence promote it manually to a higher warning level (4)48 SET_SOURCE_FILES_PROPERTIES(MultiType.cc PROPERTIES COMPILE_FLAGS "-w44244")49 ENDIF()50 51 44 ORXONOX_ADD_LIBRARY(util 52 45 FIND_HEADER_FILES -
code/branches/unity_build/src/libraries/util/Convert.h
r8351 r8676 133 133 #include "ImplicitConversion.h" 134 134 135 // disable warnings about possible loss of data 136 #ifdef ORXONOX_COMPILER_MSVC 137 # pragma warning(push) 138 # pragma warning(disable:4244) 139 #endif 140 135 141 namespace orxonox 136 142 { … … 471 477 } 472 478 479 // Reinstate warnings 480 #ifdef ORXONOX_COMPILER_MSVC 481 # pragma warning(pop) 482 #endif 483 473 484 #endif /* _Convert_H__ */
Note: See TracChangeset
for help on using the changeset viewer.