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

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2022-01-07 16:51:15 +0300
committeronqtam <vik.kirilov@gmail.com>2022-01-10 17:09:01 +0300
commitae27c0f1f3a97c245875d7eb859f91c9236da4d7 (patch)
tree161bd70eab261e315509b64da8614a071dc83fe8 /examples
parentff693f7b5fc9118686a6370de5f24ee001441f4a (diff)
removed unused variable
Diffstat (limited to 'examples')
-rw-r--r--examples/all_features/stringification.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/all_features/stringification.cpp b/examples/all_features/stringification.cpp
index 7220e810..97e21e4f 100644
--- a/examples/all_features/stringification.cpp
+++ b/examples/all_features/stringification.cpp
@@ -110,7 +110,6 @@ TEST_CASE("all asserts should fail and show how the objects get stringified") {
// std::string already has an operator<< working with std::ostream
std::string dummy = "omg";
- std::string dummy2 = "tralala";
CHECK(dummy == "tralala"); // should fail
CHECK("tralala" == dummy); // should fail