[Lldb-commits] [lldb] r223484 - Fix compilation errors after clang modules checkin.
Zachary Turner
zturner at google.com
Fri Dec 5 09:38:20 PST 2014
Author: zturner
Date: Fri Dec 5 11:38:20 2014
New Revision: 223484
URL: http://llvm.org/viewvc/llvm-project?rev=223484&view=rev
Log:
Fix compilation errors after clang modules checkin.
Modified:
lldb/trunk/source/Expression/ClangModulesDeclVendor.cpp
Modified: lldb/trunk/source/Expression/ClangModulesDeclVendor.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ClangModulesDeclVendor.cpp?rev=223484&r1=223483&r2=223484&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangModulesDeclVendor.cpp (original)
+++ lldb/trunk/source/Expression/ClangModulesDeclVendor.cpp Fri Dec 5 11:38:20 2014
@@ -7,9 +7,8 @@
//
//===----------------------------------------------------------------------===//
-#include "ClangModulesDeclVendor.h"
-
#include "lldb/Core/StreamString.h"
+#include "lldb/Expression/ClangModulesDeclVendor.h"
#include "lldb/Host/FileSpec.h"
#include "lldb/Host/Host.h"
#include "lldb/Host/HostInfo.h"
@@ -23,6 +22,8 @@
#include "clang/Sema/Lookup.h"
#include "clang/Serialization/ASTReader.h"
+#include <mutex>
+
using namespace lldb_private;
namespace {
More information about the lldb-commits
mailing list