From a5e97b0a641a90bd61f6faef7023bb9feee0b35a Mon Sep 17 00:00:00 2001 From: Marcin Kolny Date: Sun, 30 Jul 2017 14:52:08 +0100 Subject: Object: build fix Value_Pointer class takes only one template argument --- glib/glibmm/object.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glib/glibmm/object.h b/glib/glibmm/object.h index 72c66928..d55db055 100644 --- a/glib/glibmm/object.h +++ b/glib/glibmm/object.h @@ -233,11 +233,11 @@ struct TypeTraits> } // namespace Container_Helpers -template +template inline PtrT -Value_Pointer::get_(Glib::Object*) const +Value_Pointer::get_(Glib::Object*) const { - return dynamic_cast(get_object()); + return dynamic_cast(get_object()); } /** Partial specialization for RefPtr<> to Glib::Object. -- cgit v1.2.1