From f4612061d786c090db4bab1a0029b13a589d3a75 Mon Sep 17 00:00:00 2001 From: rbock Date: Sun, 10 Sep 2017 15:01:14 +0200 Subject: [PATCH] Make portable static assert explicit --- include/sqlpp11/portable_static_assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sqlpp11/portable_static_assert.h b/include/sqlpp11/portable_static_assert.h index c71f9d73..8e78c3a7 100644 --- a/include/sqlpp11/portable_static_assert.h +++ b/include/sqlpp11/portable_static_assert.h @@ -36,7 +36,7 @@ namespace sqlpp struct name : std::false_type \ { \ template \ - name(T&&...) \ + explicit name(T&&...) \ { \ static_assert(wrong_t::value, message); \ } \