Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 4, 2015, 10:25:42 PM (9 years ago)
Author:
landauf
Message:

replace 'NULL' by 'nullptr'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/util/SharedPtr.h

    r10745 r10765  
    215215
    216216        public:
    217             /// Default constructor, the pointer is set to NULL.
     217            /// Default constructor, the pointer is set to nullptr.
    218218            inline SharedPtr() : pointer_(0), counter_(0)
    219219            {
     
    310310            }
    311311
    312             /// Returns true if the pointer is not NULL.
     312            /// Returns true if the pointer is not nullptr.
    313313            inline operator bool() const
    314314            {
Note: See TracChangeset for help on using the changeset viewer.