diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2013-08-08 21:52:50 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2013-08-08 21:52:50 +0000 |
commit | 2472b928d221fb4d48c8e0f771f0467c51af73c7 (patch) | |
tree | 29f9969286ed8868a6559d9bf86522295caaa276 /libcxx/test/strings/basic.string | |
parent | db8bf8313a8b3eee33f9053215681e8362ee5f62 (diff) | |
download | bcm5719-llvm-2472b928d221fb4d48c8e0f771f0467c51af73c7.tar.gz bcm5719-llvm-2472b928d221fb4d48c8e0f771f0467c51af73c7.zip |
N3644 tests for map/multimap/set/multiset. Drive-by NOEXCEPT for __tree_const_iterator constructor. Fix comment typos in other tests
llvm-svn: 188019
Diffstat (limited to 'libcxx/test/strings/basic.string')
-rw-r--r-- | libcxx/test/strings/basic.string/string.iterators/iterators.pass.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/strings/basic.string/string.iterators/iterators.pass.cpp b/libcxx/test/strings/basic.string/string.iterators/iterators.pass.cpp index ff896094dbd..386cededa53 100644 --- a/libcxx/test/strings/basic.string/string.iterators/iterators.pass.cpp +++ b/libcxx/test/strings/basic.string/string.iterators/iterators.pass.cpp @@ -22,7 +22,7 @@ int main() { #if _LIBCPP_STD_VER > 11 - { // N3664 testing + { // N3644 testing typedef std::string C; C::iterator ii1{}, ii2{}; C::iterator ii4 = ii1; @@ -34,7 +34,7 @@ int main() assert ( !(ii1 != cii )); } - { // N3664 testing + { // N3644 testing typedef std::wstring C; C::iterator ii1{}, ii2{}; C::iterator ii4 = ii1; @@ -46,7 +46,7 @@ int main() assert ( !(ii1 != cii )); } - { // N3664 testing + { // N3644 testing typedef std::u16string C; C::iterator ii1{}, ii2{}; C::iterator ii4 = ii1; @@ -58,7 +58,7 @@ int main() assert ( !(ii1 != cii )); } - { // N3664 testing + { // N3644 testing typedef std::u32string C; C::iterator ii1{}, ii2{}; C::iterator ii4 = ii1; |