diff options
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 2c9f1582..5f7e8cc2 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -7706,6 +7706,10 @@ namespace BinaryNinja { { return name < other.name; } + bool operator==(const QualifiedNameAndType& other) const + { + return name == other.name && type == other.type; + } }; struct TypeAndId |
