Constified two RefPointer accessors.

git-svn-id: http://yate.null.ro/svn/yate/trunk@827 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2006-06-01 14:36:53 +00:00
parent 3f91434a2e
commit 7e8b3e2dbe
1 changed files with 2 additions and 2 deletions

View File

@ -760,13 +760,13 @@ public:
/**
* Member access operator
*/
inline Obj* operator->()
inline Obj* operator->() const
{ return pointer(); }
/**
* Dereferencing operator
*/
inline Obj& operator*()
inline Obj& operator*() const
{ return *pointer(); }
};