summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2023-08-04 14:33:23 -0400
committerJosh Ferrell <josh@vector35.com>2023-08-04 14:33:23 -0400
commitdd14f066d18236f4deed76ab98b602eb165449bc (patch)
tree56d35e729ba48c43759b28aced189ad70999cda2 /binaryninjaapi.h
parent4431ddb07ac63b5cd8da5ff4050e335b5ab4d0ba (diff)
Fix overloaded virtual function warnings
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 62177289..36490778 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -2955,6 +2955,9 @@ namespace BinaryNinja {
class QualifiedName : public NameList
{
public:
+ using NameList::operator=;
+ using NameList::operator+;
+
QualifiedName();
QualifiedName(const BNQualifiedName* name);
QualifiedName(const std::string& name);
@@ -2979,6 +2982,9 @@ namespace BinaryNinja {
class NameSpace : public NameList
{
public:
+ using NameList::operator=;
+ using NameList::operator+;
+
NameSpace();
NameSpace(const std::string& name);
NameSpace(const std::vector<std::string>& name);