mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
src: apply clang-tidy rule modernize-deprecated-headers
PR-URL: https://github.com/nodejs/node/pull/26159 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
42551909f7
commit
8137668c53
@ -7,7 +7,7 @@
|
||||
#include "uv.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "node.h"
|
||||
#include "node_internals.h"
|
||||
|
||||
#include <signal.h>
|
||||
#include <csignal>
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "base_object.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
|
||||
#include "util.h"
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
namespace node {
|
||||
//// Base 64 ////
|
||||
|
@ -28,8 +28,8 @@
|
||||
#include "util-inl.h"
|
||||
#include "uv.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <cerrno>
|
||||
#include <cstring>
|
||||
#include <vector>
|
||||
#include <unordered_set>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <execinfo.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/mman.h>
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#endif
|
||||
|
||||
#else // __POSIX__
|
||||
|
@ -34,8 +34,8 @@
|
||||
#include "node_context_data.h"
|
||||
#include "node_worker.h"
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
#include <utility>
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "tracing/traced_value.h"
|
||||
#include "v8-profiler.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <algorithm>
|
||||
#include <atomic>
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
||||
#include "uv.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include <functional>
|
||||
#include <list>
|
||||
#include <unordered_map>
|
||||
|
@ -16,13 +16,13 @@
|
||||
|
||||
#include "libplatform/libplatform.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include <sstream>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
#ifdef __POSIX__
|
||||
#include <limits.h> // PTHREAD_STACK_MIN
|
||||
#include <climits> // PTHREAD_STACK_MIN
|
||||
#include <pthread.h>
|
||||
#endif // __POSIX__
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <stddef.h>
|
||||
#include <cstddef>
|
||||
|
||||
#if !HAVE_INSPECTOR
|
||||
#error("This header can only be used when inspector is enabled")
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include "zlib.h"
|
||||
|
||||
#include <deque>
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include <vector>
|
||||
|
||||
namespace node {
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "uv.h"
|
||||
|
||||
#include <memory>
|
||||
#include <stddef.h>
|
||||
#include <cstddef>
|
||||
|
||||
#if !HAVE_INSPECTOR
|
||||
#error("This header can only be used when inspector is enabled")
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "openssl/sha.h" // Sha-1 hash
|
||||
|
||||
#include <map>
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
#define ACCEPT_KEY_LENGTH base64_encoded_size(20)
|
||||
#define BUFFER_GROWTH_CHUNK_SIZE 1024
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <algorithm>
|
||||
#include <limits.h> // PATH_MAX
|
||||
#include <climits> // PATH_MAX
|
||||
#include <sys/stat.h> // S_IFDIR
|
||||
#include "module_wrap.h"
|
||||
|
||||
|
12
src/node.cc
12
src/node.cc
@ -72,13 +72,13 @@
|
||||
#include "large_pages/node_large_page.h"
|
||||
#endif
|
||||
|
||||
#include <errno.h>
|
||||
#include <cerrno>
|
||||
#include <fcntl.h> // _O_RDWR
|
||||
#include <limits.h> // PATH_MAX
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <climits> // PATH_MAX
|
||||
#include <csignal>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <string>
|
||||
|
@ -178,8 +178,8 @@ NODE_DEPRECATED("Use MakeCallback(..., async_context)",
|
||||
|
||||
} // namespace node
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
|
||||
#ifndef NODE_STRINGIFY
|
||||
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|
||||
|
@ -31,8 +31,8 @@
|
||||
#include "v8-profiler.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include <cstring>
|
||||
#include <climits>
|
||||
|
||||
#define THROW_AND_RETURN_UNLESS_BUFFER(env, obj) \
|
||||
THROW_AND_RETURN_IF_NOT_BUFFER(env, obj, "argument") \
|
||||
|
@ -24,12 +24,12 @@
|
||||
|
||||
#include "zlib.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <cerrno>
|
||||
#if !defined(_MSC_VER)
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#include <signal.h>
|
||||
#include <csignal>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <limits>
|
||||
|
@ -37,9 +37,9 @@
|
||||
#include "util-inl.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <limits.h> // INT_MAX
|
||||
#include <string.h>
|
||||
#include <cerrno>
|
||||
#include <climits> // INT_MAX
|
||||
#include <cstring>
|
||||
|
||||
#include <algorithm>
|
||||
#include <memory>
|
||||
|
@ -22,8 +22,8 @@
|
||||
#include "node_crypto_bio.h"
|
||||
#include "openssl/bio.h"
|
||||
#include "util-inl.h"
|
||||
#include <limits.h>
|
||||
#include <string.h>
|
||||
#include <climits>
|
||||
#include <cstring>
|
||||
|
||||
namespace node {
|
||||
namespace crypto {
|
||||
|
@ -24,8 +24,8 @@
|
||||
|
||||
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
||||
|
||||
#include <stddef.h> // size_t
|
||||
#include <stdint.h>
|
||||
#include <cstddef> // size_t
|
||||
#include <cstdint>
|
||||
|
||||
namespace node {
|
||||
namespace crypto {
|
||||
|
@ -44,7 +44,7 @@
|
||||
|
||||
#include "node_errors.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <errno.h>
|
||||
#include <stdarg.h>
|
||||
#include <cerrno>
|
||||
#include <cstdarg>
|
||||
|
||||
#include "node_errors.h"
|
||||
#include "node_internals.h"
|
||||
|
@ -36,9 +36,9 @@
|
||||
#include <fcntl.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <cstring>
|
||||
#include <cerrno>
|
||||
#include <climits>
|
||||
|
||||
#if defined(__MINGW32__) || defined(_MSC_VER)
|
||||
# include <io.h>
|
||||
|
@ -4,7 +4,7 @@
|
||||
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
||||
|
||||
// FIXME(joyeecheung): nghttp2.h needs stdint.h to compile on Windows
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
#include "nghttp2/nghttp2.h"
|
||||
|
||||
#include "node_http2_state.h"
|
||||
|
@ -35,8 +35,8 @@
|
||||
#include "util-inl.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <stdlib.h> // free()
|
||||
#include <string.h> // strdup(), strchr()
|
||||
#include <cstdlib> // free()
|
||||
#include <cstring> // strdup(), strchr()
|
||||
|
||||
#include "http_parser_adaptor.h"
|
||||
|
||||
|
@ -34,8 +34,8 @@
|
||||
#include "uv.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
@ -20,7 +20,7 @@
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
#include "node.h"
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <errno.h>
|
||||
#include <cerrno>
|
||||
#include "env-inl.h"
|
||||
#include "node_binding.h"
|
||||
#include "node_options-inl.h"
|
||||
|
@ -24,15 +24,15 @@
|
||||
#include "util.h"
|
||||
|
||||
#include <array>
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <cerrno>
|
||||
#include <cstring>
|
||||
|
||||
#ifdef __MINGW32__
|
||||
# include <io.h>
|
||||
#endif // __MINGW32__
|
||||
|
||||
#ifdef __POSIX__
|
||||
# include <limits.h> // PATH_MAX on Solaris.
|
||||
# include <climits> // PATH_MAX on Solaris.
|
||||
# include <unistd.h> // gethostname, sysconf
|
||||
#endif // __POSIX__
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <stdarg.h>
|
||||
#include <cstdarg>
|
||||
|
||||
#include "env-inl.h"
|
||||
#include "node_process.h"
|
||||
|
@ -15,8 +15,8 @@
|
||||
#include "inspector_io.h"
|
||||
#endif
|
||||
|
||||
#include <limits.h> // PATH_MAX
|
||||
#include <stdio.h>
|
||||
#include <climits> // PATH_MAX
|
||||
#include <cstdio>
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#include <direct.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <limits.h> // PATH_MAX
|
||||
#include <climits> // PATH_MAX
|
||||
|
||||
#include "env-inl.h"
|
||||
#include "node_internals.h"
|
||||
|
@ -27,12 +27,12 @@
|
||||
#endif
|
||||
#include <cxxabi.h>
|
||||
#include <dlfcn.h>
|
||||
#include <inttypes.h>
|
||||
#include <cinttypes>
|
||||
#endif
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <cstring>
|
||||
#include <ctime>
|
||||
#include <iomanip>
|
||||
|
||||
#ifndef _MSC_VER
|
||||
|
@ -14,8 +14,8 @@
|
||||
#include <vector>
|
||||
#include "v8.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <iomanip>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
@ -25,8 +25,8 @@
|
||||
#include "node_file.h"
|
||||
#include "util.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <cmath>
|
||||
|
||||
namespace node {
|
||||
|
@ -32,9 +32,9 @@
|
||||
#include "brotli/decode.h"
|
||||
#include "zlib.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <cerrno>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <sys/types.h>
|
||||
#include <atomic>
|
||||
|
||||
|
@ -24,8 +24,8 @@
|
||||
#include "stream_wrap.h"
|
||||
#include "util-inl.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "node_internals.h"
|
||||
#include "string_bytes.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
|
||||
namespace node {
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "util-inl.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <limits.h> // INT_MAX
|
||||
#include <climits> // INT_MAX
|
||||
|
||||
namespace node {
|
||||
|
||||
|
@ -31,8 +31,8 @@
|
||||
#include "udp_wrap.h"
|
||||
#include "util-inl.h"
|
||||
|
||||
#include <string.h> // memcpy()
|
||||
#include <limits.h> // INT_MAX
|
||||
#include <cstring> // memcpy()
|
||||
#include <climits> // INT_MAX
|
||||
|
||||
|
||||
namespace node {
|
||||
|
@ -27,8 +27,8 @@
|
||||
#include "node_errors.h"
|
||||
#include "util.h"
|
||||
|
||||
#include <limits.h>
|
||||
#include <string.h> // memcpy
|
||||
#include <climits>
|
||||
#include <cstring> // memcpy
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
#include "util.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include <algorithm>
|
||||
|
||||
namespace node {
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include "stream_wrap.h"
|
||||
#include "util-inl.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <cstdlib>
|
||||
|
||||
|
||||
namespace node {
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "util.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
|
||||
namespace node {
|
||||
namespace {
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "tracing/node_trace_writer.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#include <fcntl.h>
|
||||
|
||||
#include "util-inl.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include <cmath>
|
||||
#include <sstream>
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <string>
|
||||
|
||||
#if defined(NODE_HAVE_I18N_SUPPORT)
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "util.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <stddef.h>
|
||||
#include <cstddef>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <sstream>
|
||||
#include "node_buffer.h"
|
||||
#include "node_errors.h"
|
||||
|
12
src/util.h
12
src/util.h
@ -27,12 +27,12 @@
|
||||
#include "node_persistent.h"
|
||||
#include "v8.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <signal.h>
|
||||
#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <cassert>
|
||||
#include <csignal>
|
||||
#include <cstddef>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
#include <functional> // std::function
|
||||
#include <limits>
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef TEST_CCTEST_NODE_TEST_FIXTURE_H_
|
||||
#define TEST_CCTEST_NODE_TEST_FIXTURE_H_
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <cstdlib>
|
||||
#include "gtest/gtest.h"
|
||||
#include "node.h"
|
||||
#include "node_platform.h"
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "base64.h"
|
||||
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
#include "tracing/traced_value.h"
|
||||
|
||||
#include <math.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#include <cmath>
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
|
@ -50,12 +50,12 @@ Japanese, it doesn't *claim* to have Japanese.
|
||||
|
||||
*/
|
||||
|
||||
#include "string.h"
|
||||
#include <cstring>
|
||||
#include "charstr.h" // ICU internal header
|
||||
#include <unicode/ures.h>
|
||||
#include <unicode/udata.h>
|
||||
#include <unicode/putil.h>
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
const char* PROG = "iculslocs";
|
||||
const char* NAME = U_ICUDATA_NAME; // assume ICU data
|
||||
|
Loading…
Reference in New Issue
Block a user