From 61fc9cf0542e7b5230b715530a6c823d5dac7a69 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Mon, 8 Sep 2008 02:15:06 +0000 Subject: [PATCH] python/object_core.hpp: "inline" added to declarations, to match definitions (resolves MIPSpro 7.41 warnings) [SVN r48659] --- include/boost/python/object_core.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/python/object_core.hpp b/include/boost/python/object_core.hpp index abd2ea5b..0342ef2e 100644 --- a/include/boost/python/object_core.hpp +++ b/include/boost/python/object_core.hpp @@ -230,11 +230,11 @@ namespace api inline object_base(object_base const&); inline object_base(PyObject* ptr); - object_base& operator=(object_base const& rhs); - ~object_base(); + inline object_base& operator=(object_base const& rhs); + inline ~object_base(); // Underlying object access -- returns a borrowed reference - PyObject* ptr() const; + inline PyObject* ptr() const; private: PyObject* m_ptr;