[Lldb-commits] [lldb] r292364 - Fix windows build for previous commit

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 18 04:29:52 PST 2017


Author: labath
Date: Wed Jan 18 06:29:51 2017
New Revision: 292364

URL: http://llvm.org/viewvc/llvm-project?rev=292364&view=rev
Log:
Fix windows build for previous commit

We get an error about a redefinition of getcwd(). This seems to fix it.

Modified:
    lldb/trunk/unittests/Core/LogTest.cpp

Modified: lldb/trunk/unittests/Core/LogTest.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/Core/LogTest.cpp?rev=292364&r1=292363&r2=292364&view=diff
==============================================================================
--- lldb/trunk/unittests/Core/LogTest.cpp (original)
+++ lldb/trunk/unittests/Core/LogTest.cpp Wed Jan 18 06:29:51 2017
@@ -7,10 +7,11 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include "gtest/gtest.h"
+
 #include "lldb/Core/Log.h"
 #include "lldb/Core/StreamString.h"
 #include "lldb/Host/Host.h"
-#include "gtest/gtest.h"
 
 using namespace lldb;
 using namespace lldb_private;




More information about the lldb-commits mailing list