Missing llvm:: from merge.

This commit is contained in:
Axel Naumann 2013-09-26 14:48:45 +02:00 committed by sftnight
parent 10c416332e
commit c464f2c6fb

View File

@ -197,7 +197,7 @@ namespace cling {
DynamicLibraryManager::loadLibrary(const std::string& filename,
bool permanent, bool* tryCode) {
// If it's not an absolute path, prepend "lib"
SmallString<128> Absolute((llvm::StringRef(filename)));
llvm::SmallString<128> Absolute((llvm::StringRef(filename)));
llvm::sys::fs::make_absolute(Absolute);
bool isAbsolute = filename == Absolute.c_str();
bool exists = false;