From 76e47d4887f456878c0e2f20ebfae36267006cd7 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Wed, 26 May 2021 12:19:37 +0200 Subject: [lldb][NFC] Use C++ versions of the deprecated C standard library headers The C headers are deprecated so as requested in D102845, this is replacing them all with their (not deprecated) C++ equivalent. Reviewed By: shafik Differential Revision: https://reviews.llvm.org/D103084 --- lldb/source/Interpreter/ScriptInterpreter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp') diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp index d822ea2..2b70a91 100644 --- a/lldb/source/Interpreter/ScriptInterpreter.cpp +++ b/lldb/source/Interpreter/ScriptInterpreter.cpp @@ -18,9 +18,9 @@ #if defined(_WIN32) #include "lldb/Host/windows/ConnectionGenericFileWindows.h" #endif +#include +#include #include -#include -#include #include using namespace lldb; -- cgit v1.1