- Timestamp:
- 09/27/09 00:58:01 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/shared_ptr.h
r570 r636 123 123 */ 124 124 T *operator->() { 125 bdm_assert_debug ( payload,"dereferencing NULL" );125 if ( !payload) {abort();};// "dereferencing NULL" ); 126 126 return payload; 127 127 }