diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-08-05 23:27:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-08-05 23:27:30 +0900 |
commit | 509cd0aa505df0a93702608575b72f07a97c0139 (patch) | |
tree | cda134364734ce39751fd780a97c1f8b04ddd598 /src/tclap/SwitchArg.h | |
parent | 430373ae38565e0d7f62b8fca0cbad73de73ec7f (diff) | |
download | universal-indent-gui-tqt-509cd0aa505df0a93702608575b72f07a97c0139.tar.gz universal-indent-gui-tqt-509cd0aa505df0a93702608575b72f07a97c0139.zip |
Formatted and fixed TCLAP headers
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tclap/SwitchArg.h')
-rw-r--r-- | src/tclap/SwitchArg.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/tclap/SwitchArg.h b/src/tclap/SwitchArg.h index 78b8c0c..874bcf6 100644 --- a/src/tclap/SwitchArg.h +++ b/src/tclap/SwitchArg.h @@ -107,9 +107,6 @@ namespace TCLAP virtual void reset(); }; - ////////////////////////////////////////////////////////////////////// - //BEGIN SwitchArg.cpp - ////////////////////////////////////////////////////////////////////// inline SwitchArg::SwitchArg(const std::string &flag, const std::string &name, const std::string &desc, bool default_val, Visitor *v) : Arg(flag, name, desc, false, false, v), _value(default_val), _default(default_val) @@ -220,10 +217,6 @@ namespace TCLAP Arg::reset(); _value = _default; } - - ////////////////////////////////////////////////////////////////////// - //End SwitchArg.cpp - ////////////////////////////////////////////////////////////////////// -} //namespace TCLAP +} #endif |