From 68f319279b5d8d704fae5d8660e2c525c93d7c3a Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Wed, 22 Mar 2017 12:13:16 -0400 Subject: [PATCH] Fix for build failure --- include/CLI/Timer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/CLI/Timer.hpp b/include/CLI/Timer.hpp index 4a7dc50..cff16f9 100644 --- a/include/CLI/Timer.hpp +++ b/include/CLI/Timer.hpp @@ -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" + "-----------------------------------------"; } -- libgit2 0.21.4