[Lldb-commits] [lldb] babbd55 - [lldb/Core] Add missing include

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 12 09:55:20 PST 2019


Author: Jonas Devlieghere
Date: 2019-12-12T09:55:11-08:00
New Revision: babbd554b8db7744a6829f7180e195db018ef6a7

URL: https://github.com/llvm/llvm-project/commit/babbd554b8db7744a6829f7180e195db018ef6a7
DIFF: https://github.com/llvm/llvm-project/commit/babbd554b8db7744a6829f7180e195db018ef6a7.diff

LOG: [lldb/Core] Add missing include

This got flagged by the modules build.

Added: 
    

Modified: 
    lldb/source/Core/IOHandler.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Core/IOHandler.cpp b/lldb/source/Core/IOHandler.cpp
index b8134716f937..4021a6d7f327 100644
--- a/lldb/source/Core/IOHandler.cpp
+++ b/lldb/source/Core/IOHandler.cpp
@@ -15,6 +15,7 @@
 
 #include "lldb/Core/Debugger.h"
 #include "lldb/Core/StreamFile.h"
+#include "lldb/Host/Config.h"
 #include "lldb/Host/File.h"
 #include "lldb/Utility/Predicate.h"
 #include "lldb/Utility/Status.h"
@@ -51,7 +52,6 @@ using llvm::None;
 using llvm::Optional;
 using llvm::StringRef;
 
-
 IOHandler::IOHandler(Debugger &debugger, IOHandler::Type type)
     : IOHandler(debugger, type,
                 FileSP(),       // Adopt STDIN from top input reader


        


More information about the lldb-commits mailing list