summaryrefslogtreecommitdiff
path: root/src/database
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-01-25 02:10:17 +0100
committerlouiz’ <louiz@louiz.org>2018-01-25 02:10:17 +0100
commit3f8513726512308b1b48d3370d7acf0f63752725 (patch)
tree04a02d673eeff7b2081df0b5e8b33a1a8a43c3ac /src/database
parentde73a728f28df7db3fddd431b07ef5bf6742fb1a (diff)
parent97c8e2fed3b510d8048a386230b480c3044153d4 (diff)
downloadbiboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.gz
biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.bz2
biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.xz
biboumi-3f8513726512308b1b48d3370d7acf0f63752725.zip
Merge tag '7.2'
Diffstat (limited to 'src/database')
-rw-r--r--src/database/row.hpp4
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)