Changeset 10765 for code/branches/cpp11_v2/src/libraries/util/SharedPtr.h
- Timestamp:
- Nov 4, 2015, 10:25:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/util/SharedPtr.h
r10745 r10765 215 215 216 216 public: 217 /// Default constructor, the pointer is set to NULL.217 /// Default constructor, the pointer is set to nullptr. 218 218 inline SharedPtr() : pointer_(0), counter_(0) 219 219 { … … 310 310 } 311 311 312 /// Returns true if the pointer is not NULL.312 /// Returns true if the pointer is not nullptr. 313 313 inline operator bool() const 314 314 {
Note: See TracChangeset
for help on using the changeset viewer.