[Lldb-commits] [lldb] r192724 - Unbreak the build on OSX by defining Initialize() and Terminate() for the Windows platform plugin

Enrico Granata egranata at apple.com
Tue Oct 15 11:11:30 PDT 2013


Author: enrico
Date: Tue Oct 15 13:11:29 2013
New Revision: 192724

URL: http://llvm.org/viewvc/llvm-project?rev=192724&view=rev
Log:
Unbreak the build on OSX by defining Initialize() and Terminate() for the Windows platform plugin


Modified:
    lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h

Modified: lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h?rev=192724&r1=192723&r2=192724&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h (original)
+++ lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h Tue Oct 15 13:11:29 2013
@@ -24,10 +24,10 @@ class PlatformWindows : public Platform
 public:
 
     static void
-    Initialize(void);
+    Initialize(void) {}
 
     static void
-    Terminate(void);
+    Terminate(void) {}
 
     PlatformWindows(bool is_host);
 





More information about the lldb-commits mailing list