Commit 68f319279b5d8d704fae5d8660e2c525c93d7c3a

Authored by Henry Fredrick Schreiner
1 parent 18b3fa9d

Fix for build failure

Showing 1 changed file with 1 additions and 1 deletions
include/CLI/Timer.hpp
@@ -39,7 +39,7 @@ public: @@ -39,7 +39,7 @@ public:
39 39
40 /// This is a fancy print function with --- headers 40 /// This is a fancy print function with --- headers
41 static std::string Big(std::string title, std::string time) { 41 static std::string Big(std::string title, std::string time) {
42 - return "-----------------------------------------\n" 42 + return std::string("-----------------------------------------\n")
43 + "| " + title + " | Time = " + time + "\n" 43 + "| " + title + " | Time = " + time + "\n"
44 + "-----------------------------------------"; 44 + "-----------------------------------------";
45 } 45 }