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 13:35:25 +0300
committeronqtam <vik.kirilov@gmail.com>2022-01-07 13:35:25 +0300
commit803cbd1e8f7a9d8cda9d4bb33083a24a31b50402 (patch)
tree34dff46f17cf289e23fcd45a53149e9968a162c0 /scripts
parent8989a656db4af50f184ace13220388890a356bca (diff)
tabs to spaces
Diffstat (limited to 'scripts')
-rw-r--r--scripts/data/article.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/data/article.txt b/scripts/data/article.txt
index 7854a328..08a56c03 100644
--- a/scripts/data/article.txt
+++ b/scripts/data/article.txt
@@ -98,7 +98,7 @@ As we saw in the example above - a main() entry point for the program can be pro
#include "doctest.h"
int main(int argc, char** argv) {
doctest::Context ctx;
- // !!! THIS IS JUST AN EXAMPLE SHOWING HOW DEFAULTS/OVERRIDES ARE SET !!!
+ // !!! THIS IS JUST AN EXAMPLE SHOWING HOW DEFAULTS/OVERRIDES ARE SET !!!
ctx.setOption("abort-after", 5); // default - stop after 5 failed asserts
ctx.applyCommandLine(argc, argv); // apply command line - argc / argv
ctx.setOption("no-breaks", true); // override - don't break in the debugger