Shorten the unnecessary long interface name.

This commit is contained in:
Vassil Vassilev 2014-04-09 10:33:22 +02:00 committed by sftnight
parent 522b254345
commit 0314a15148
2 changed files with 2 additions and 3 deletions

View File

@ -68,7 +68,7 @@ namespace cling {
///\brief Returns true if the file was a dynamic library and it was already
/// loaded.
///
bool isDynamicLibraryLoaded(llvm::StringRef fullPath) const;
bool isLibraryLoaded(llvm::StringRef fullPath) const;
///\brief Explicitly tell the execution engine to use symbols from
/// a shared library that would otherwise not be used for symbol

View File

@ -311,8 +311,7 @@ namespace cling {
return kLoadLibError;
}
bool
DynamicLibraryManager::isDynamicLibraryLoaded(llvm::StringRef fullPath) const {
bool DynamicLibraryManager::isLibraryLoaded(llvm::StringRef fullPath) const {
// get canonical path name and check if already loaded
#if defined(LLVM_ON_WIN32)
char buf[_MAX_PATH];