Unverified Commit 1e063615 by John Kessenich Committed by GitHub

Merge pull request #1812 from ShabbyX/master

Remove __DATE__ and __TIME__ usage
parents 4e6b9ea3 f4edb8f8
......@@ -227,7 +227,7 @@ namespace {
}
}
else if (arg == "--version" || arg == "-V") {
std::cout << basename(argv[0]) << " version 0.97 " << __DATE__ << " " << __TIME__ << std::endl;
std::cout << basename(argv[0]) << " version 0.97" << std::endl;
exit(0);
} else if (arg == "--input" || arg == "-i") {
// Collect input files
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment