Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/git/patches/boringssl/0001-disable-warnings.patch
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -193,6 +193,10 @@ elseif(MSVC)
@@ -193,6 +193,11 @@ elseif(MSVC)
# possible loss of data
"C4244" # 'function' : conversion from 'int' to 'uint8_t',
# possible loss of data
+ "C4255" # 'function' : no function prototype given: converting '()' to
+ # '(void)'
+ "C4191" # 'operator/operation' : unsafe conversion from 'type of
+ # expression' to 'type required'
+ "C5264" # 'const' variable is not used
"C4267" # conversion from 'size_t' to 'int', possible loss of data
"C4371" # layout of class may have changed from a previous version of the
# compiler due to better packing of member '...'