N3644 tests for map/multimap/set/multiset. Drive-by NOEXCEPT for __tree_const_iterator constructor. Fix comment typos in other tests

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@188019 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2013-08-08 21:52:50 +00:00
parent a4e87abbb9
commit 051c848e88
15 changed files with 80 additions and 15 deletions

View File

@@ -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;