diff options
author | louiz’ <louiz@louiz.org> | 2018-01-24 21:42:26 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-01-25 01:22:35 +0100 |
commit | 33a5f1355d1250bf77184459a8d40a790e42814d (patch) | |
tree | bc203d27cc6144904c0ebeedbbc391b9e2cac29f /src/database | |
parent | 23e51e814f330ee06dc4dac29d1b2f328e8238b8 (diff) | |
download | biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.tar.gz biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.tar.bz2 biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.tar.xz biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.zip |
Remove a variable template usage
Because it’s only supported in gcc>=5.0
Diffstat (limited to 'src/database')
-rw-r--r-- | src/database/row.hpp | 4 |
1 files changed, 2 insertions, 2 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 <bool Coucou=true> - void save(std::unique_ptr<DatabaseEngine>& db, typename std::enable_if<!is_one_of<Id, T...> && Coucou>::type* = nullptr) + void save(std::unique_ptr<DatabaseEngine>& db, typename std::enable_if<!is_one_of<Id, T...>::value && Coucou>::type* = nullptr) { this->insert(*db); } template <bool Coucou=true> - void save(std::unique_ptr<DatabaseEngine>& db, typename std::enable_if<is_one_of<Id, T...> && Coucou>::type* = nullptr) + void save(std::unique_ptr<DatabaseEngine>& db, typename std::enable_if<is_one_of<Id, T...>::value && Coucou>::type* = nullptr) { const Id& id = std::get<Id>(this->columns); if (id.value == Id::unset_value) |