vector: remove explicit qualifier for init_list
This commit is contained in:
parent
3b1226ee9c
commit
d81149b6e1
@ -35,7 +35,7 @@ namespace util {
|
||||
vector ();
|
||||
|
||||
template <typename... U>
|
||||
explicit vector (U ...u): detail::coord<S, T> {std::forward<U> (u)...} { ; }
|
||||
vector (U ...u): detail::coord<S, T> {std::forward<U> (u)...} { ; }
|
||||
|
||||
// arithmetic operators
|
||||
vector<S,T> operator* (T) const;
|
||||
|
Loading…
Reference in New Issue
Block a user