mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
using emplace
This commit is contained in:
parent
3644c120c0
commit
5f715d73e3
34 changed files with 101 additions and 103 deletions
|
@ -2345,7 +2345,7 @@ void IfcPreferSplit::execute(istream &s)
|
|||
s >> dec >> split;
|
||||
if (split == -1)
|
||||
throw IfaceParseError("Bad split offset");
|
||||
dcp->conf->splitrecords.push_back(PreferSplitRecord());
|
||||
dcp->conf->splitrecords.emplace_back();
|
||||
PreferSplitRecord &rec( dcp->conf->splitrecords.back() );
|
||||
|
||||
rec.storage.space = addr.getSpace();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue