From 33a5f1355d1250bf77184459a8d40a790e42814d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 24 Jan 2018 21:42:26 +0100 Subject: Remove a variable template usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because it’s only supported in gcc>=5.0 --- src/database/row.hpp | 4 ++-- src/utils/is_one_of.hpp | 9 +++------ tests/utils.cpp | 14 +++++++------- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/src/database/row.hpp b/src/database/row.hpp index 1b50ff9..2d55897 100644 --- a/src/database/row.hpp +++ b/src/database/row.hpp @@ -30,13 +30,13 @@ struct Row } template - void save(std::unique_ptr& db, typename std::enable_if && Coucou>::type* = nullptr) + void save(std::unique_ptr& db, typename std::enable_if::value && Coucou>::type* = nullptr) { this->insert(*db); } template - void save(std::unique_ptr& db, typename std::enable_if && Coucou>::type* = nullptr) + void save(std::unique_ptr& db, typename std::enable_if::value && Coucou>::type* = nullptr) { const Id& id = std::get(this->columns); if (id.value == Id::unset_value) diff --git a/src/utils/is_one_of.hpp b/src/utils/is_one_of.hpp index 4d6770e..c706421 100644 --- a/src/utils/is_one_of.hpp +++ b/src/utils/is_one_of.hpp @@ -3,15 +3,12 @@ #include template -struct is_one_of_implem { +struct is_one_of { static constexpr bool value = false; }; template -struct is_one_of_implem { +struct is_one_of { static constexpr bool value = - std::is_same::value || is_one_of_implem::value; + std::is_same::value || is_one_of::value; }; - -template -constexpr bool is_one_of = is_one_of_implem::value; diff --git a/tests/utils.cpp b/tests/utils.cpp index 6de19f0..99c7040 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -175,11 +175,11 @@ TEST_CASE("dirname") TEST_CASE("is_in") { - CHECK((is_one_of) == true); - CHECK((is_one_of) == false); - CHECK((is_one_of) == false); - CHECK((is_one_of) == true); - CHECK((is_one_of) == false); - CHECK((is_one_of) == true); - CHECK((is_one_of) == true); + CHECK((is_one_of::value) == true); + CHECK((is_one_of::value) == false); + CHECK((is_one_of::value) == false); + CHECK((is_one_of::value) == true); + CHECK((is_one_of::value) == false); + CHECK((is_one_of::value) == true); + CHECK((is_one_of::value) == true); } -- cgit v1.2.3 From 97c8e2fed3b510d8048a386230b480c3044153d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Thu, 25 Jan 2018 02:05:26 +0100 Subject: Release version 7.2 --- CHANGELOG.rst | 6 ++++++ CMakeLists.txt | 2 +- packaging/biboumi.spec.cmake | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0e0d207..8fdafe9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 7.2 - 2018-01-24 +======================== + +- Fix compilation with gcc 4.9. This is the last version to support this + old version. + Version 7.1 - 2018-01-22 ======================== diff --git a/CMakeLists.txt b/CMakeLists.txt index b31d718..5d31900 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0) project(biboumi) set(${PROJECT_NAME}_VERSION_MAJOR 7) -set(${PROJECT_NAME}_VERSION_MINOR 1) +set(${PROJECT_NAME}_VERSION_MINOR 2) set(${PROJECT_NAME}_VERSION_SUFFIX "") if(NOT CMAKE_BUILD_TYPE) diff --git a/packaging/biboumi.spec.cmake b/packaging/biboumi.spec.cmake index 0bb0db8..8b9ad17 100644 --- a/packaging/biboumi.spec.cmake +++ b/packaging/biboumi.spec.cmake @@ -63,6 +63,9 @@ make check %{?_smp_mflags} %changelog +* Wed Jan 24 2018 Le Coz Florent - 7.2-1 + Update to version 7.2 + * Wed Jan 22 2018 Le Coz Florent - 7.1-1 Update to version 7.1 -- cgit v1.2.3