Constified two RefPointer accessors.

git-svn-id: http://voip.null.ro/svn/yate@827 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2006-06-01 14:36:53 +00:00
parent 573ef9fc2d
commit 1a9b9b34b1
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(); }
};