[clang-tidy] Switch C headers to C++ ones
Found using modernize-return-braced-init-list Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Paul Beckingham
parent
e46039efb1
commit
0344856d65
12
src/util.cpp
12
src/util.cpp
@@ -31,7 +31,7 @@
|
||||
#ifdef FREEBSD
|
||||
#define _WITH_GETLINE
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
@@ -39,16 +39,16 @@
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <csignal>
|
||||
#include <pwd.h>
|
||||
#include <signal.h>
|
||||
#include <csignal>
|
||||
#include <sys/select.h>
|
||||
#include <Lexer.h>
|
||||
#include <unicode.h>
|
||||
|
||||
Reference in New Issue
Block a user