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

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil MacIntosh <neilmac@microsoft.com>2015-11-13 06:27:53 +0300
committerNeil MacIntosh <neilmac@microsoft.com>2015-11-13 06:27:53 +0300
commitfa056f67e8c0c3ef27df5da241c714cc0f45d71a (patch)
tree0ccff2bcefe2ffb5271c9d8a5773f38e2feacc2b /tests/string_span_tests.cpp
parenta998a9b33b3cbcc12595391de8d62a33eb14d290 (diff)
Enabled -Wall for gcc and clang.
Diffstat (limited to 'tests/string_span_tests.cpp')
-rw-r--r--tests/string_span_tests.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/string_span_tests.cpp b/tests/string_span_tests.cpp
index 5d4681a..efdf0ff 100644
--- a/tests/string_span_tests.cpp
+++ b/tests/string_span_tests.cpp
@@ -100,6 +100,7 @@ SUITE(string_span_tests)
{
char stack_string[] = "Hello";
cstring_span<> v = ensure_z(stack_string);
+ (void)v;
#ifdef CONFIRM_COMPILATION_ERRORS
string_span<> v2 = v;
string_span<> v3 = "Hello";