diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2016-07-21 13:37:48 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2016-07-21 13:37:48 +0000 |
commit | eab3d367538030e2fd4feb0c94795e1bdb566451 (patch) | |
tree | 1d60467595a41758a71cfbedd2689c9fcb900efa /llvm/unittests/ProfileData/CoverageMappingTest.cpp | |
parent | 6eae9f2c670d8124faafa28b65eb1c95c554b64b (diff) | |
download | bcm5719-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/ProfileData/CoverageMappingTest.cpp')
-rw-r--r-- | llvm/unittests/ProfileData/CoverageMappingTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ProfileData/CoverageMappingTest.cpp b/llvm/unittests/ProfileData/CoverageMappingTest.cpp index 53b40ebae85..47809b14faa 100644 --- a/llvm/unittests/ProfileData/CoverageMappingTest.cpp +++ b/llvm/unittests/ProfileData/CoverageMappingTest.cpp @@ -116,7 +116,7 @@ struct CoverageMappingTest : ::testing::Test { if (R != Files.end()) return R->second; unsigned Index = Files.size(); - Files.emplace_second(Name, Index); + Files.try_emplace(Name, Index); return Index; } |