summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ADT/StringMapTest.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2016-07-21 13:37:48 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2016-07-21 13:37:48 +0000
commiteab3d367538030e2fd4feb0c94795e1bdb566451 (patch)
tree1d60467595a41758a71cfbedd2689c9fcb900efa /llvm/unittests/ADT/StringMapTest.cpp
parent6eae9f2c670d8124faafa28b65eb1c95c554b64b (diff)
downloadbcm5719-llvm-eab3d367538030e2fd4feb0c94795e1bdb566451.tar.gz
bcm5719-llvm-eab3d367538030e2fd4feb0c94795e1bdb566451.zip
Rename StringMap::emplace_second to try_emplace.
Coincidentally this function maps to the C++17 try_emplace. Rename it for consistentcy with C++17 std::map. NFC. llvm-svn: 276276
Diffstat (limited to 'llvm/unittests/ADT/StringMapTest.cpp')
-rw-r--r--llvm/unittests/ADT/StringMapTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/StringMapTest.cpp b/llvm/unittests/ADT/StringMapTest.cpp
index 6ca701bb23a..911c72d7496 100644
--- a/llvm/unittests/ADT/StringMapTest.cpp
+++ b/llvm/unittests/ADT/StringMapTest.cpp
@@ -458,7 +458,7 @@ struct NonMoveableNonCopyableType {
// Test that we can "emplace" an element in the map without involving map/move
TEST(StringMapCustomTest, EmplaceTest) {
StringMap<NonMoveableNonCopyableType> Map;
- Map.emplace_second("abcd", 42);
+ Map.try_emplace("abcd", 42);
EXPECT_EQ(1u, Map.count("abcd"));
EXPECT_EQ(42, Map["abcd"].Data);
}
OpenPOWER on IntegriCloud