diff options
| author | Pavel Labath <labath@google.com> | 2017-01-18 12:29:51 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-01-18 12:29:51 +0000 |
| commit | a92d6230dafe2867ebe4f3f57e97b926ec6feb75 (patch) | |
| tree | d50c499aeef772984bea20a5ec8440ebbd873ae6 /lldb/unittests/Core/LogTest.cpp | |
| parent | 4b51989635b6e13fde89cbe35d0f987cf8692ee9 (diff) | |
| download | bcm5719-llvm-a92d6230dafe2867ebe4f3f57e97b926ec6feb75.tar.gz bcm5719-llvm-a92d6230dafe2867ebe4f3f57e97b926ec6feb75.zip | |
Fix windows build for previous commit
We get an error about a redefinition of getcwd(). This seems to fix it.
llvm-svn: 292364
Diffstat (limited to 'lldb/unittests/Core/LogTest.cpp')
| -rw-r--r-- | lldb/unittests/Core/LogTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/unittests/Core/LogTest.cpp b/lldb/unittests/Core/LogTest.cpp index 46640edfb15..60c386aafd8 100644 --- a/lldb/unittests/Core/LogTest.cpp +++ b/lldb/unittests/Core/LogTest.cpp @@ -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; |

