mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
using emplace
This commit is contained in:
parent
3644c120c0
commit
5f715d73e3
34 changed files with 101 additions and 103 deletions
|
@ -79,7 +79,7 @@ void PcodeCacher::addLabelRef(VarnodeData *ptr)
|
|||
|
||||
{ // Store off a reference to a label and the next instruction
|
||||
// address
|
||||
label_refs.push_back(RelativeRecord());
|
||||
label_refs.emplace_back();
|
||||
label_refs.back().dataptr = ptr;
|
||||
label_refs.back().calling_index = issued.size();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue