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/CommandObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/CommandObject.cpp') diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 22effff..09a8b05 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -12,8 +12,8 @@ #include #include -#include -#include +#include +#include #include "lldb/Core/Address.h" #include "lldb/Interpreter/Options.h" -- cgit v1.1