Changeset 6417 for code/trunk/src/libraries/core/DynLib.cc
- Timestamp:
- Dec 25, 2009, 10:23:58 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/DynLib.cc
r6073 r6417 79 79 m_hInst = (DYNLIB_HANDLE)DYNLIB_LOAD( name.c_str() ); 80 80 81 if ( !m_hInst)81 if (!m_hInst) 82 82 ThrowException( 83 83 General, … … 92 92 COUT(4) << "Unloading module " << mName << std::endl; 93 93 94 if ( DYNLIB_UNLOAD( m_hInst ))94 if (DYNLIB_UNLOAD( m_hInst )) 95 95 { 96 96 ThrowException( … … 132 132 return std::string(mac_errorBundle()); 133 133 #else 134 return std::string("");134 return ""; 135 135 #endif 136 136 }
Note: See TracChangeset
for help on using the changeset viewer.