[llvm-c] Specify explicit namespace in LLVMLoadLibraryPermanently

Presence of using namespace llvm depended on several #ifdef's, and
this broke the build on mswin32.

llvm-svn: 194142
This commit is contained in:
Peter Zotov
2013-11-06 09:45:58 +00:00
parent 6b5e8b9409
commit 671fe2ee58

View File

@@ -176,5 +176,5 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char *symbolName) {
//===----------------------------------------------------------------------===//
LLVMBool LLVMLoadLibraryPermanently(const char* Filename) {
return sys::DynamicLibrary::LoadLibraryPermanently(Filename);
return llvm::sys::DynamicLibrary::LoadLibraryPermanently(Filename);
}