Skip to content

Commit 61fc9cf

Browse files
author
Ralf W. Grosse-Kunstleve
committed
python/object_core.hpp: "inline" added to declarations, to match definitions (resolves MIPSpro 7.41 warnings)
[SVN r48659]
1 parent b3e91f8 commit 61fc9cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/boost/python/object_core.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ namespace api
230230
inline object_base(object_base const&);
231231
inline object_base(PyObject* ptr);
232232

233-
object_base& operator=(object_base const& rhs);
234-
~object_base();
233+
inline object_base& operator=(object_base const& rhs);
234+
inline ~object_base();
235235

236236
// Underlying object access -- returns a borrowed reference
237-
PyObject* ptr() const;
237+
inline PyObject* ptr() const;
238238

239239
private:
240240
PyObject* m_ptr;

0 commit comments

Comments
 (0)