Fix a few minor int pointer value initializations

This commit is contained in:
Tim Wojtulewicz 2023-01-14 16:29:14 -07:00
parent 3b0e8ee6f1
commit 103b381874
2 changed files with 4 additions and 4 deletions

View file

@ -883,7 +883,7 @@ bool SwitchStmt::AddCaseLabelValueMapping(const Val* v, int idx)
return false;
case_label_value_map[v] = idx;
case_label_hash_map.Insert(hk.get(), new int(idx));
case_label_hash_map.Insert(hk.get(), new int{idx});
return true;
}