Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-02-26 01:37:33 +0300
committerMyles Borins <mylesborins@google.com>2020-03-05 00:30:03 +0300
commit4d5318c16467623770bb77f7ecac720cb93b0326 (patch)
treee8ab0642e7b87beb91a63eeafa33a3b547f3cd28 /src/node_dir.h
parent0fc45f80b59db586c46d8b0fca265446a46ed121 (diff)
src: improve handling of internal field counting
Change suggested by bnoordhuis. Improve handing of internal field counting by using enums. Helps protect against future possible breakage if field indexes are ever changed or added to. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/31960 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node_dir.h')
-rw-r--r--src/node_dir.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/node_dir.h b/src/node_dir.h
index b55245d5b89..5fcc36326b7 100644
--- a/src/node_dir.h
+++ b/src/node_dir.h
@@ -12,8 +12,6 @@ namespace fs_dir {
// Needed to propagate `uv_dir_t`.
class DirHandle : public AsyncWrap {
public:
- static constexpr int kDirHandleFieldCount = 1;
-
static DirHandle* New(Environment* env, uv_dir_t* dir);
~DirHandle() override;