Author: sylvestre
Date: Wed Oct 16 04:12:15 2013
New Revision: 192780

URL: http://llvm.org/viewvc/llvm-project?rev=192780&view=rev
Log:
Unbreak the gcc build (complain about duplicate definition of 
Initialize/Terminate (done in the cpp code)

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=192780&r1=192779&r2=192780&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h (original)
+++ lldb/trunk/source/Plugins/Platform/Windows/PlatformWindows.h Wed Oct 16 
04:12:15 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