2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 18:52:26 +00:00

python/object_core.hpp: "inline" added to declarations, to match definitions (resolves MIPSpro 7.41 warnings)

[SVN r48659]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2008-09-08 02:15:06 +00:00
parent b3e91f845e
commit 61fc9cf054

View File

@@ -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;