mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
using emplace
This commit is contained in:
parent
3644c120c0
commit
5f715d73e3
34 changed files with 101 additions and 103 deletions
|
@ -77,6 +77,8 @@ public:
|
|||
Address codeaddr; // Address of instruction refering to target call
|
||||
Address thunkaddr; // The target call
|
||||
uint4 mask; // Mask associated with this target
|
||||
TargetHit(const Address &func,const Address &code,const Address &thunk,uint4 m) :
|
||||
funcstart(func), codeaddr(code), thunkaddr(thunk) { mask = m; }
|
||||
bool operator<(const TargetHit &op2) const { return (funcstart < op2.funcstart); }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue