[Lldb-commits] [lldb] r192780 - Unbreak the gcc build (complain about duplicate definition of Initialize/Terminate (done in the cpp code)

Sylvestre Ledru sylvestre at debian.org
Wed Oct 16 02:12:15 PDT 2013


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





More information about the lldb-commits mailing list