summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libcamera/bound_method.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libcamera/bound_method.h b/include/libcamera/bound_method.h
index f23b17c7..a1541212 100644
--- a/include/libcamera/bound_method.h
+++ b/include/libcamera/bound_method.h
@@ -35,7 +35,6 @@ public:
bool match(Object *object) { return object == object_; }
Object *object() const { return object_; }
- ConnectionType connectionType() const { return connectionType_; }
virtual void invokePack(void *pack) = 0;
@@ -44,6 +43,8 @@ protected:
void *obj_;
Object *object_;
+
+private:
ConnectionType connectionType_;
};