[Lldb-commits] [lldb] r335552 - Fix windows build for r335541.

Alexander Polyakov via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 25 16:29:52 PDT 2018


Author: apolyakov
Date: Mon Jun 25 16:29:52 2018
New Revision: 335552

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

I didn't include <functional> header and used std::function.

Modified:
    lldb/trunk/tools/lldb-mi/MICmdBase.h

Modified: lldb/trunk/tools/lldb-mi/MICmdBase.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdBase.h?rev=335552&r1=335551&r2=335552&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdBase.h (original)
+++ lldb/trunk/tools/lldb-mi/MICmdBase.h Mon Jun 25 16:29:52 2018
@@ -11,6 +11,8 @@
 
 // C Includes
 // C++ Includes
+#include <functional> // for function
+
 // Other libraries and framework includes
 #include "lldb/API/SBError.h"
 




More information about the lldb-commits mailing list