diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-05-21 22:16:46 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-05-21 22:17:02 -0400 |
| commit | 97f1e422ea6a7825148ec0a1c64906695950053e (patch) | |
| tree | e75cbf735d08fa13d87997c39f718e801eae036e /binaryninjaapi.h | |
| parent | e5320a7ad9a8b602823243228a2ddc904d8dc5e7 (diff) | |
Fix crash caused by automatic operator=
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 054e11f3..c0c9708c 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1655,6 +1655,8 @@ namespace BinaryNinja PluginCommand(const PluginCommand& cmd); ~PluginCommand(); + PluginCommand& operator=(const PluginCommand& cmd); + static void Register(const std::string& name, const std::string& description, const std::function<void(BinaryView* view)>& action); static void Register(const std::string& name, const std::string& description, |
