Skip to content

Commit a4d651c

Browse files
committed
Kill tru64cxx warnings
[SVN r14419]
1 parent d3bbc0e commit a4d651c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

include/boost/python/list.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ class list : public object
9494
}
9595

9696
public: // implementation detail -- for internal use only
97-
explicit list(detail::borrowed_reference);
98-
explicit list(detail::new_reference);
97+
inline explicit list(detail::borrowed_reference);
98+
inline explicit list(detail::new_reference);
9999

100100
private:
101101
static BOOST_PYTHON_DECL detail::new_reference call(object const&);

include/boost/python/object_core.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ namespace api
195195
struct object_base : object_operators<object>
196196
{
197197
// copy constructor without NULL checking, for efficiency.
198-
object_base(object_base const&);
199-
object_base(PyObject* ptr);
198+
inline object_base(object_base const&);
199+
inline object_base(PyObject* ptr);
200200

201201
object_base& operator=(object_base const& rhs);
202202
~object_base();

0 commit comments

Comments
 (0)