diff options
author | Michele Calgaro <[email protected]> | 2023-10-30 11:47:01 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-10-30 11:47:01 +0900 |
commit | d54efa8cb872b6ecc7657dd215efeeabf04821e1 (patch) | |
tree | d177cc3a032282804cbcf4c3d06dea10cfce59b0 /src/tclap | |
parent | c0b1f3384ccc4dbf9311e97829f9218cf944fac8 (diff) | |
download | universal-indent-gui-tqt-d54efa8cb872b6ecc7657dd215efeeabf04821e1.tar.gz universal-indent-gui-tqt-d54efa8cb872b6ecc7657dd215efeeabf04821e1.zip |
Add git hash to program version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/tclap')
-rw-r--r-- | src/tclap/StdOutput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclap/StdOutput.h b/src/tclap/StdOutput.h index 24b90ed..71a7ed8 100644 --- a/src/tclap/StdOutput.h +++ b/src/tclap/StdOutput.h @@ -99,7 +99,7 @@ namespace TCLAP std::string progName = _cmd.getProgramName(); std::string version = _cmd.getVersion(); - std::cout << std::endl << progName << " version: " << version << std::endl << std::endl; + std::cout << std::endl << progName << " version " << version << std::endl << std::endl; } inline void StdOutput::usage(CmdLineInterface &_cmd) |