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:
authorAnna Henningsen <anna@addaleax.net>2018-12-15 00:46:14 +0300
committerRich Trott <rtrott@gmail.com>2018-12-17 07:21:45 +0300
commit18f2bf7f9bd183f7baf08a705035fc99580a2c40 (patch)
treefbe758d9df8a7b5d32d6c0b05b7791dd45b457d3 /src/node_postmortem_metadata.cc
parent52ee55a06b9c8842045d6fb3b95f06939cc79078 (diff)
src: mark some global state as const
Mark some global variables as `const` or `constexpr`. PR-URL: https://github.com/nodejs/node/pull/25052 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_postmortem_metadata.cc')
-rw-r--r--src/node_postmortem_metadata.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_postmortem_metadata.cc b/src/node_postmortem_metadata.cc
index 93bf5a4dd7d..527bfb623e6 100644
--- a/src/node_postmortem_metadata.cc
+++ b/src/node_postmortem_metadata.cc
@@ -60,6 +60,6 @@ int GenDebugSymbols() {
return 1;
}
-int debug_symbols_generated = GenDebugSymbols();
+const int debug_symbols_generated = GenDebugSymbols();
} // namespace node