diff options
author | gengjiawen <technicalcute@gmail.com> | 2019-02-17 10:53:47 +0800 |
---|---|---|
committer | Daniel Bevenius <daniel.bevenius@gmail.com> | 2019-02-27 05:35:53 +0100 |
commit | 8137668c531935c58347cd8e78147d3a9d3cc339 (patch) | |
tree | 68a560138be9cfe9325e46aebbaab3d1f607347e /src/node_crypto_clienthello.h | |
parent | 42551909f7c20d6b4c4c6e28695958729177455d (diff) | |
download | node-new-8137668c531935c58347cd8e78147d3a9d3cc339.tar.gz |
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>
Diffstat (limited to 'src/node_crypto_clienthello.h')
-rw-r--r-- | src/node_crypto_clienthello.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_crypto_clienthello.h b/src/node_crypto_clienthello.h index 48f49771fd..d1661735f5 100644 --- a/src/node_crypto_clienthello.h +++ b/src/node_crypto_clienthello.h @@ -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 { |