Skip to content

Commit 43d3ec8

Browse files
committed
test
1 parent 72a5b79 commit 43d3ec8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libcxx/test/std/containers/container.adaptors/flat.map/flat.map.access/at_transparent.pass.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ constexpr bool test() {
120120
using M = std::flat_map<std::string, int, std::less<>>;
121121
M m{{"alpha", 1}, {"beta", 2}, {"epsilon", 1}, {"eta", 3}, {"gamma", 3}};
122122
int& x = m.at("alpha");
123-
assert(x == 1);
124-
123+
assert(x == 1); //
125124
}
126125

127126
return true;

0 commit comments

Comments
 (0)