Changeset 13041 for OpenSceneGraph/trunk/include/osg/ref_ptr
- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/ref_ptr (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/ref_ptr
r11562 r13041 72 72 bool operator != (const T* ptr) const { return (_ptr!=ptr); } 73 73 friend bool operator != (const T* ptr, const ref_ptr& rp) { return (ptr!=rp._ptr); } 74 74 75 75 bool operator < (const ref_ptr& rp) const { return (_ptr<rp._ptr); } 76 76
