[Lldb-commits] [lldb] r304158 - Replace forward decl with include to unbreak the build.
Benjamin Kramer via lldb-commits
lldb-commits at lists.llvm.org
Mon May 29 07:40:08 PDT 2017
Author: d0k
Date: Mon May 29 09:40:07 2017
New Revision: 304158
URL: http://llvm.org/viewvc/llvm-project?rev=304158&view=rev
Log:
Replace forward decl with include to unbreak the build.
Modified:
lldb/trunk/include/lldb/Utility/Log.h
Modified: lldb/trunk/include/lldb/Utility/Log.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/Log.h?rev=304158&r1=304157&r2=304158&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/Log.h (original)
+++ lldb/trunk/include/lldb/Utility/Log.h Mon May 29 09:40:07 2017
@@ -18,6 +18,7 @@
#include "llvm/ADT/StringMap.h" // for StringMap
#include "llvm/ADT/StringRef.h" // for StringRef, StringLiteral
#include "llvm/Support/FormatVariadic.h"
+#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/RWMutex.h"
#include <atomic>
@@ -30,9 +31,6 @@
namespace llvm {
class raw_ostream;
}
-namespace llvm {
-template <class C> class ManagedStatic;
-}
//----------------------------------------------------------------------
// Logging Options
//----------------------------------------------------------------------
More information about the lldb-commits
mailing list