diff options
| author | Fuwn <[email protected]> | 2022-06-24 20:33:48 -1000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-24 20:33:48 -1000 |
| commit | cfa6b082eaa4a02f34576cbd5a55e3c46f04acdd (patch) | |
| tree | 01fc32af55077dcf7093b904a9208125bb197874 /src/cli.cc | |
| parent | fix(node): stringable explicit copy constructor (diff) | |
| download | cait-cfa6b082eaa4a02f34576cbd5a55e3c46f04acdd.tar.xz cait-cfa6b082eaa4a02f34576cbd5a55e3c46f04acdd.zip | |
refactor(help): move version to constexpr
Diffstat (limited to 'src/cli.cc')
| -rw-r--r-- | src/cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ auto cli::look() -> int { std::cout << cait::help_message() << '\n'; } break; case cait::utility::hash("--version"): { - std::cout << VERSION << '\n'; + std::cout << version::whole() << '\n'; } break; default: { std::string cait_file_name = this->option("-f")->value_or("build.cait"); |