mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 10:07:41 +08:00
Tolerate [[nodiscard]] annotations in the STL. Reviewed as https://reviews.llvm.org/D39033
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@318276 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -35,7 +35,7 @@ test(S s, typename S::size_type pos)
|
||||
{
|
||||
try
|
||||
{
|
||||
s.at(pos);
|
||||
(void)s.at(pos);
|
||||
assert(false);
|
||||
}
|
||||
catch (std::out_of_range&)
|
||||
@@ -44,7 +44,7 @@ test(S s, typename S::size_type pos)
|
||||
}
|
||||
try
|
||||
{
|
||||
cs.at(pos);
|
||||
(void)cs.at(pos);
|
||||
assert(false);
|
||||
}
|
||||
catch (std::out_of_range&)
|
||||
|
Reference in New Issue
Block a user