Skip to content

Commit

Permalink
Fixed some strings related with poco (#144)
Browse files Browse the repository at this point in the history
Signed-off-by: ahcorde <ahcorde@gmail.com>
  • Loading branch information
ahcorde authored Apr 14, 2020
1 parent fe6fa9f commit ff9e468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/class_loader_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ void loadLibrary(const std::string & library_path, ClassLoader * loader)
// Insert library into global loaded library vectory
std::lock_guard<std::recursive_mutex> llv_lock(getLoadedLibraryVectorMutex());
LibraryVector & open_libraries = getLoadedLibraryVector();
// Note: Poco::SharedLibrary automatically calls load() when library passed to constructor
// Note: rcpputils::SharedLibrary automatically calls load() when library passed to constructor
open_libraries.push_back(LibraryPair(library_path, library_handle));
}

Expand Down Expand Up @@ -548,7 +548,7 @@ void unloadLibrary(const std::string & library_path, ClassLoader * loader)
return;
} catch (const std::runtime_error & e) {
throw class_loader::LibraryUnloadException(
"Could not unload library (Poco exception = " + std::string(e.what()) + ")");
"Could not unload library (rcpputils exception = " + std::string(e.what()) + ")");
}
}
throw class_loader::LibraryUnloadException(
Expand Down

0 comments on commit ff9e468

Please sign in to comment.