Skip to content

Commit 5d62222

Browse files
authored
Ignore C5264 ('const' variable is not used) warning in boringssl. (#1159)
1 parent 8444545 commit 5d62222

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
--- a/src/CMakeLists.txt
22
+++ b/src/CMakeLists.txt
3-
@@ -193,6 +193,10 @@ elseif(MSVC)
3+
@@ -193,6 +193,11 @@ elseif(MSVC)
44
# possible loss of data
55
"C4244" # 'function' : conversion from 'int' to 'uint8_t',
66
# possible loss of data
77
+ "C4255" # 'function' : no function prototype given: converting '()' to
88
+ # '(void)'
99
+ "C4191" # 'operator/operation' : unsafe conversion from 'type of
1010
+ # expression' to 'type required'
11+
+ "C5264" # 'const' variable is not used
1112
"C4267" # conversion from 'size_t' to 'int', possible loss of data
1213
"C4371" # layout of class may have changed from a previous version of the
1314
# compiler due to better packing of member '...'

0 commit comments

Comments
 (0)