Changeset 1123:18c89646185e in lemon-main
- Timestamp:
- 04/02/15 12:57:18 (10 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r1122 r1123 151 151 ELSEIF(MSVC) 152 152 # This part is unnecessary 'casue the same is set by the lemon/core.h. 153 # Still keep it as an example. 154 SET(CXX_WARNING "/wd4250 /wd4355 /wd4503 /wd4800 /wd4996") 153 # Still kept as an example. 154 155 # SET(CXX_WARNING "/wd4250 /wd4267 /wd4355 /wd4503 /wd4800 /wd4996") 156 155 157 # Suppressed warnings: 156 158 # C4250: 'class1' : inherits 'class2::member' via dominance 159 # C4267: conversion from 'size_t' to 'type', possible loss of data 157 160 # C4355: 'this' : used in base member initializer list 158 161 # C4503: 'function' : decorated name length exceeded, name was truncated -
lemon/arg_parser.h
r879 r1123 27 27 #include <sstream> 28 28 #include <algorithm> 29 #include <lemon/core.h> 29 30 #include <lemon/assert.h> 30 31 -
lemon/core.h
r1121 r1123 30 30 // Disable the following warnings when compiling with MSVC: 31 31 // C4250: 'class1' : inherits 'class2::member' via dominance 32 // C4267: conversion from 'size_t' to 'type', possible loss of data 32 33 // C4355: 'this' : used in base member initializer list 33 34 // C4503: 'function' : decorated name length exceeded, name was truncated … … 35 36 // C4996: 'function': was declared deprecated 36 37 #ifdef _MSC_VER 37 #pragma warning( disable : 4250 4 355 4503 4800 4996 )38 #pragma warning( disable : 4250 4267 4355 4503 4800 4996 ) 38 39 #endif 39 40 -
lemon/counter.h
r786 r1123 22 22 #include <string> 23 23 #include <iostream> 24 25 #include <lemon/core.h> 24 26 25 27 ///\ingroup timecount
Note: See TracChangeset
for help on using the changeset viewer.