Implement LWG 2946, 3075 and 3076. Reviewed as https://reviews.llvm.org/D48616

llvm-svn: 336132
This commit is contained in:
Marshall Clow
2018-07-02 18:41:15 +00:00
parent f50ad6c311
commit 76b26852b6
28 changed files with 755 additions and 148 deletions

View File

@@ -281,4 +281,13 @@ int main()
test2<S>();
}
#endif
#if TEST_STD_VER > 3
{ // LWG 2946
std::string s = " ";
s.replace(s.cbegin(), s.cend(), {"abc", 1});
assert(s.size() == 1);
assert(s == "a");
}
#endif
}

View File

@@ -379,4 +379,13 @@ int main()
test2<S>();
}
#endif
#if TEST_STD_VER > 3
{ // LWG 2946
std::string s = " ";
s.replace(0, 1, {"abc", 1});
assert(s.size() == 1);
assert(s == "a");
}
#endif
}