Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Smith <brian@briansmith.org>2015-10-12 09:22:27 +0300
committerAdam Langley <agl@google.com>2015-10-13 21:20:29 +0300
commite5ae760a96baac69c3509b6b62a7d736eb12f260 (patch)
tree20f5b41f812d45c17a4a22aa9043c1994b883843 /CMakeLists.txt
parentb735b1b6e48a3f8ce50c44c7255390b892d118f1 (diff)
Silence MSVC warning C4210.
The warning is: C4210: nonstandard extension used : function given file scope. It is caused by function declarations that aren't at the top level in a file. Change-Id: Ib1c2ae64e15e66eb0a7255a29c0e560fbf55c2b2 Reviewed-on: https://boringssl-review.googlesource.com/6210 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c1a6a373..38dfe450 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,6 @@ elseif(MSVC)
"C4127" # conditional expression is constant
"C4200" # nonstandard extension used : zero-sized array in
# struct/union.
- "C4210" # nonstandard extension used : function given file scope
"C4242" # 'function' : conversion from 'int' to 'uint8_t',
# possible loss of data
"C4244" # 'function' : conversion from 'int' to 'uint8_t',