From 934dd5adf13f155567eea4bc0eb9e3fa8aace6f0 Mon Sep 17 00:00:00 2001 From: emeric Date: Thu, 13 Feb 2020 13:29:57 +0100 Subject: [PATCH 1/2] Fixed regression about multi words parsing. Fixes #30 --- src/utils/String.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils/String.hpp b/src/utils/String.hpp index 44f67faa..763249d1 100644 --- a/src/utils/String.hpp +++ b/src/utils/String.hpp @@ -57,6 +57,10 @@ std::optional readAs(const std::string& str) return res; } +template<> +std::optional +readAs(const std::string& str); + std::string replaceInString(const std::string& str, const std::string& from, const std::string& to); From ab2efcc5adbe11c7ef06ab527e60fe874b762fd3 Mon Sep 17 00:00:00 2001 From: emeric Date: Thu, 13 Feb 2020 13:32:26 +0100 Subject: [PATCH 2/2] Bumped version to v3.6.2 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8ede3d34..638b5bed 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT(lms, 3.6.1, test@test) +AC_INIT(lms, 3.6.2, test@test) AM_INIT_AUTOMAKE AC_CONFIG_HEADER(src/config/config.h)