mirror of
https://github.com/intel/llvm.git
synced 2026-01-30 14:07:28 +08:00
[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
This commit is contained in:
@@ -11,9 +11,9 @@
|
||||
|
||||
#include <tuple>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <cctype>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
static inline int xdigit_to_sint(char ch) {
|
||||
if (ch >= 'a' && ch <= 'f')
|
||||
|
||||
Reference in New Issue
Block a user