mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-29 00:08:59 -04:00

Reviewers: a.sidorin Reviewed By: a.sidorin Subscribers: martong, cfe-commits Differential Revision: https://reviews.llvm.org/D48631 Patch by Balazs Keri! llvm-svn: 335968
10 lines
179 B
C++
10 lines
179 B
C++
namespace std {
|
|
template <typename T>
|
|
struct initializer_list {
|
|
const T *begin, *end;
|
|
initializer_list();
|
|
};
|
|
} // namespace std
|
|
|
|
std::initializer_list<int> IL = {1, 2, 3, 4};
|