You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMakeLists.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ set(VTR_IPO_BUILD "auto" CACHE STRING "Should VTR be compiled with interprocedur
23
23
set_property(CACHE VTR_IPO_BUILD PROPERTY STRINGS auto onoff)
24
24
25
25
#Allow the user to configure how much assertion checking should occur
26
-
set(VTR_ASSERT_LEVEL "2"CACHESTRING"VTR assertion checking level. 0: no assertions, 1: fast assertions, 2: regular assertions, 3: additional assertions with noticable run-time overhead, 4: all assertions (including those with significant run-time cost)")
26
+
set(VTR_ASSERT_LEVEL "2"CACHESTRING"VTR assertion checking level. 0: no assertions, 1: fast assertions, 2: regular assertions, 3: additional assertions with noticeable run-time overhead, 4: all assertions (including those with significant run-time cost)")
Copy file name to clipboardExpand all lines: libs/EXTERNAL/libargparse/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ libargparse
2
2
===========
3
3
This is (yet another) simple command-line parser for C++ applications, inspired by Python's agparse module.
4
4
5
-
It requires only a C++11 compiler, and has no external dependancies.
5
+
It requires only a C++11 compiler, and has no external dependencies.
6
6
7
7
One of the advantages of libargparse is that all conversions from command-line strings to program types (bool, int etc.) are performed when the command line is parsed (and not when the options are accessed).
8
8
This avoids command-line related errors from showing up deep in the program execution, which can be problematic for long-running programs.
0 commit comments