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:
authorStefan <29021710+Saalvage@users.noreply.github.com>2021-12-13 19:54:58 +0300
committerGitHub <noreply@github.com>2021-12-13 19:54:58 +0300
commit466dcfb4498b74eda7d7f5c4208e11f33a470506 (patch)
tree52bdb3da985c5d2d4c9c3c3f35e223bdf8c051c7 /scripts
parentb59552dc43c4e68f58f0ab4163b5d8f5f9e28837 (diff)
Clean up warning suppression a bit; Fixes #565 (#566)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/update_stuff.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/update_stuff.py b/scripts/update_stuff.py
index 41a1f629..5e7b8f43 100644
--- a/scripts/update_stuff.py
+++ b/scripts/update_stuff.py
@@ -23,8 +23,6 @@ for line in fileinput.input(["../doctest/parts/doctest_fwd.h"]):
doctest_contents += "#define DOCTEST_VERSION_MINOR " + version_minor + "\n"
elif line.startswith("#define DOCTEST_VERSION_PATCH "):
doctest_contents += "#define DOCTEST_VERSION_PATCH " + version_patch + "\n"
- elif line.startswith("#define DOCTEST_VERSION_STR "):
- doctest_contents += "#define DOCTEST_VERSION_STR \"" + version + "\"\n"
else:
doctest_contents += line