Skip to content

Commit 180fdc3

Browse files
committed
workaround gcc 8 and below bug
gcc 8 and below aren't able to deduce type template parameters if it is an empty variadic parameter list.
1 parent 3766344 commit 180fdc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_nexus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using cib::detail::int_;
66

77
struct EmptyConfig {
8-
constexpr static auto config = cib::config();
8+
constexpr static auto config = cib::config<>();
99
};
1010

1111
TEST_CASE("an empty configuration should compile and initialize") {

0 commit comments

Comments
 (0)