From ea0c3c5250f5682e2d7ce1f61b52a2a263a7634e Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 1 May 2019 00:10:19 +0200 Subject: [PATCH] Fixed Easy::string_to_time() definition. --- src/easy/easy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/easy/easy.cpp b/src/easy/easy.cpp index a519aa6..b25f464 100644 --- a/src/easy/easy.cpp +++ b/src/easy/easy.cpp @@ -79,7 +79,7 @@ const vector Easy::parse_stream( return vec; } -const Easy::time string_to_time(const string &strtime) +const Easy::time Easy::string_to_time(const string &strtime) { std::stringstream sstime(strtime); struct std::tm tm = {};