File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -8075,17 +8075,15 @@ Error ModuleSummaryIndexBitcodeReader::parseEntireSummary(unsigned ID) {
8075
8075
break ;
8076
8076
8077
8077
case bitc::FS_CFI_FUNCTION_DEFS: {
8078
- std::set<std::string, std::less<>> &CfiFunctionDefs =
8079
- TheIndex.cfiFunctionDefs ();
8078
+ auto &CfiFunctionDefs = TheIndex.cfiFunctionDefs ();
8080
8079
for (unsigned I = 0 ; I != Record.size (); I += 2 )
8081
8080
CfiFunctionDefs.insert (
8082
8081
{Strtab.data () + Record[I], static_cast <size_t >(Record[I + 1 ])});
8083
8082
break ;
8084
8083
}
8085
8084
8086
8085
case bitc::FS_CFI_FUNCTION_DECLS: {
8087
- std::set<std::string, std::less<>> &CfiFunctionDecls =
8088
- TheIndex.cfiFunctionDecls ();
8086
+ auto &CfiFunctionDecls = TheIndex.cfiFunctionDecls ();
8089
8087
for (unsigned I = 0 ; I != Record.size (); I += 2 )
8090
8088
CfiFunctionDecls.insert (
8091
8089
{Strtab.data () + Record[I], static_cast <size_t >(Record[I + 1 ])});
You can’t perform that action at this time.
0 commit comments