Fix build error due to new plugin namespaces.

llvm-svn: 233762
This commit is contained in:
Zachary Turner 2015-03-31 21:38:21 +00:00
parent 0b464dc4a6
commit aa7f12be7f
1 changed files with 2 additions and 2 deletions

View File

@ -263,7 +263,7 @@ SystemInitializerFull::Initialize()
//----------------------------------------------------------------------
// Linux hosted plugins
//----------------------------------------------------------------------
ProcessLinux::Initialize();
process_linux::ProcessLinux::Initialize();
#endif
#if defined(_MSC_VER)
DynamicLoaderWindows::Initialize();
@ -372,7 +372,7 @@ SystemInitializerFull::Terminate()
#endif
#if defined(__linux__)
ProcessLinux::Terminate();
process_linux::ProcessLinux::Terminate();
#endif
#if defined(__FreeBSD__)