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:
authorJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2019-12-13 03:48:59 +0300
committerJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2019-12-13 03:48:59 +0300
commit6c5c708877fdae60e2804a7e566538ba71a93d9e (patch)
tree0fafffe3878548e5a0d7dba5c95ce19979aef792 /tests/assertion_tests.cpp
parent0931262acf538479c35a5a4f9e91d97f53e7588e (diff)
change from string to char*
Diffstat (limited to 'tests/assertion_tests.cpp')
-rw-r--r--tests/assertion_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/assertion_tests.cpp b/tests/assertion_tests.cpp
index db56007..0e4dd34 100644
--- a/tests/assertion_tests.cpp
+++ b/tests/assertion_tests.cpp
@@ -51,7 +51,7 @@ int g(int i)
return i;
}
-static const std::string deathstring("Expected Death");
+static const char *deathstring("Expected Death");
} // namespace
TEST(assertion_tests, expects)