diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2012-02-22 17:38:04 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2012-02-22 17:38:04 +0000 |
commit | 5b38a0f98e4420dae1bd3e13959bc207c97a9e98 (patch) | |
tree | 3b509f76fdebaa9b6098424f5a76d938afa2b637 /test/SemaCXX/cxx0x-return-init-list.cpp | |
parent | 0f5a1930ccf169f9a2885bff18e3169af4aff2a4 (diff) |
Doug's review comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151173 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/cxx0x-return-init-list.cpp')
-rw-r--r-- | test/SemaCXX/cxx0x-return-init-list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/cxx0x-return-init-list.cpp b/test/SemaCXX/cxx0x-return-init-list.cpp index b2cb3d37ce..da83271c4d 100644 --- a/test/SemaCXX/cxx0x-return-init-list.cpp +++ b/test/SemaCXX/cxx0x-return-init-list.cpp @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s // Test that a very basic variation of generalized initializer returns (that -// required for libstdc++ 4.5) is supposed in C++98. +// required for libstdc++ 4.5) is supported in C++98. int test0(int i) { return { i }; // expected-warning{{generalized initializer lists are a C++11 extension}} |