aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/abstractmetafunction.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/ApiExtractor/abstractmetafunction.h')
-rw-r--r--sources/shiboken6/ApiExtractor/abstractmetafunction.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sources/shiboken6/ApiExtractor/abstractmetafunction.h b/sources/shiboken6/ApiExtractor/abstractmetafunction.h
index 99174b47f..30a3dbae7 100644
--- a/sources/shiboken6/ApiExtractor/abstractmetafunction.h
+++ b/sources/shiboken6/ApiExtractor/abstractmetafunction.h
@@ -64,7 +64,6 @@ public:
SignalFunction,
EmptyFunction,
SlotFunction,
- GlobalScopeFunction,
GetAttroFunction,
SetAttroFunction
};
@@ -193,7 +192,7 @@ public:
bool isDestructor() const { return functionType() == DestructorFunction; }
bool isConstructor() const;
bool isNormal() const;
- bool isInGlobalScope() const { return functionType() == GlobalScopeFunction; }
+ bool isInGlobalScope() const;
bool isSignal() const { return functionType() == SignalFunction; }
bool isSlot() const { return functionType() == SlotFunction; }
bool isEmptyFunction() const { return functionType() == EmptyFunction; }