Maybe fix

master
Daniel Kolesa 2015-07-15 22:03:51 +01:00
parent 1c4f04757d
commit 267e14c1c2
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ public:
constexpr explicit Maybe(InPlace, A &&...args): Base(in_place,
forward<A>(args)...) {}
template<typename U, typename ...A, typename = typename EnableIf<
template<typename U, typename ...A, typename = EnableIf<
IsConstructible<T, std::initializer_list<U> &, A...>::value>>
constexpr explicit
Maybe(InPlace, std::initializer_list<U> il, A &&...args):