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:
authorYash Ladha <yashladhapankajladha123@gmail.com>2020-10-01 04:18:10 +0300
committerRich Trott <rtrott@gmail.com>2020-10-05 15:57:49 +0300
commite4dc7f7d4b2e7dd2fbfbc5ee12ff28fa20502108 (patch)
tree79f54d7d862fffab10383f6bed2db43395e1e09e /src/node_perf_common.h
parentdd571cad9b6b8b47fc7d80de96cf0beca4ecf6c9 (diff)
src: fix aliased buffer import warning in env.h
Alliased buffer header is not imported in the `env.h` file due to which the language server is giving an error. Fixed it via importing the header file for "aliased_buffer.h" PR-URL: https://github.com/nodejs/node/pull/35436 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'src/node_perf_common.h')
-rw-r--r--src/node_perf_common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_perf_common.h b/src/node_perf_common.h
index 6c4c98813e7..5dc77c6fe91 100644
--- a/src/node_perf_common.h
+++ b/src/node_perf_common.h
@@ -3,6 +3,7 @@
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
+#include "aliased_buffer.h"
#include "node.h"
#include "uv.h"
#include "v8.h"