We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa404e commit ff691d7Copy full SHA for ff691d7
include/interval-tree/optional.hpp
@@ -87,7 +87,7 @@ namespace lib_interval_tree
87
template < \
88
typename U, \
89
typename... Args, \
90
- std::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value, int>...> \
+ std::enable_if_t<std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value, int> = 0> \
91
constexpr explicit optional_base(in_place_t, std::initializer_list<U> il, Args&&... args) \
92
: value_(il, std::forward<Args>(args)...) \
93
, engaged_{true} \
0 commit comments