1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-07 23:33:52 +00:00

Fix for build failure

This commit is contained in:
Henry Fredrick Schreiner 2017-03-22 12:13:16 -04:00
parent 18b3fa9dfe
commit 68f319279b

View File

@ -39,7 +39,7 @@ public:
/// This is a fancy print function with --- headers
static std::string Big(std::string title, std::string time) {
return "-----------------------------------------\n"
return std::string("-----------------------------------------\n")
+ "| " + title + " | Time = " + time + "\n"
+ "-----------------------------------------";
}