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);
 


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to