- Timestamp:
- Jan 10, 2016, 1:54:11 PM (9 years ago)
- Location:
- code/branches/cpp11_v3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3
- Property svn:mergeinfo changed
-
code/branches/cpp11_v3/src/libraries/core/module/Plugin.cc
r11015 r11054 39 39 { 40 40 this->referenceCounter_ = 0; 41 this->moduleInstance_ = NULL;41 this->moduleInstance_ = nullptr; 42 42 } 43 43 … … 45 45 { 46 46 // force unloading of the module when the plugin is destroyed 47 if (this->moduleInstance_ != NULL)47 if (this->moduleInstance_ != nullptr) 48 48 this->unloadModule(); 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.