This commit is contained in:
Baptiste Wicht 2016-09-03 23:27:08 +02:00
parent d22b782949
commit 860bb1618d

View File

@ -45,13 +45,13 @@ public:
}; };
template <typename T> template <typename T>
inline constexpr const T* begin(initializer_list<T> __il) noexcept { inline constexpr const T* begin(initializer_list<T> list) noexcept {
return __il.begin(); return list.begin();
} }
template <typename T> template <typename T>
inline constexpr const T* end(initializer_list<T> __il) noexcept { inline constexpr const T* end(initializer_list<T> list) noexcept {
return __il.end(); return list.end();
} }
} //end of namespace std } //end of namespace std