summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/CMakeLists.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index f30dd49a3..a41423895 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -47,11 +47,15 @@ if (MSVC)
47 47
48 # Warnings 48 # Warnings
49 /W3 49 /W3
50 /we4062 # enumerator 'identifier' in a switch of enum 'enumeration' is not handled 50 /we4018 # 'expression': signed/unsigned mismatch
51 /we4062 # Enumerator 'identifier' in a switch of enum 'enumeration' is not handled
51 /we4101 # 'identifier': unreferenced local variable 52 /we4101 # 'identifier': unreferenced local variable
52 /we4265 # 'class': class has virtual functions, but destructor is not virtual 53 /we4265 # 'class': class has virtual functions, but destructor is not virtual
53 /we4388 # signed/unsigned mismatch 54 /we4267 # 'var': conversion from 'size_t' to 'type', possible loss of data
54 /we4547 # 'operator' : operator before comma has no effect; expected operator with side-effect 55 /we4305 # 'context': truncation from 'type1' to 'type2'
56 /we4388 # 'expression': signed/unsigned mismatch
57 /we4389 # 'operator': signed/unsigned mismatch
58 /we4547 # 'operator': operator before comma has no effect; expected operator with side-effect
55 /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? 59 /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'?
56 /we4555 # Expression has no effect; expected expression with side-effect 60 /we4555 # Expression has no effect; expected expression with side-effect
57 /we4715 # 'function': not all control paths return a value 61 /we4715 # 'function': not all control paths return a value