diff options
author | louiz’ <louiz@louiz.org> | 2018-01-25 02:17:20 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-01-25 02:22:19 +0100 |
commit | e267512ad40c073bd5a5b37a4ee3378c80b9f523 (patch) | |
tree | b33a90ad14ba701984a434543225a3f08c01cf6a /src/database | |
parent | 3f8513726512308b1b48d3370d7acf0f63752725 (diff) | |
download | biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.tar.gz biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.tar.bz2 biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.tar.xz biboumi-e267512ad40c073bd5a5b37a4ee3378c80b9f523.zip |
Restore the is_one_of variable template
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 2d55897..130863a 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...>::value && Coucou>::type* = nullptr) + void save(std::unique_ptr<DatabaseEngine>& db, typename std::enable_if<!is_one_of<Id, T...> && 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...>::value && Coucou>::type* = nullptr) + void save(std::unique_ptr<DatabaseEngine>& db, typename std::enable_if<is_one_of<Id, T...> && Coucou>::type* = nullptr) { const Id& id = std::get<Id>(this->columns); if (id.value == Id::unset_value) |