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-09-24 23:32:03 +0300
committerAnna Henningsen <anna@addaleax.net>2018-10-04 00:08:06 +0300
commitcc31d8b2d4d439955ba25dfdc83c8445ce0c850d (patch)
treeba0c1d98a26e4dcda46c4128f8dbae4237b43687 /src/node.h
parentd527dde3600655eae7ce0ba5da9263ec4560cd11 (diff)
src: remove public API for option variables
PR-URL: https://github.com/nodejs/node/pull/23069 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/node.h b/src/node.h
index 965a849c6be..eceabdc4e32 100644
--- a/src/node.h
+++ b/src/node.h
@@ -202,20 +202,6 @@ typedef intptr_t ssize_t;
namespace node {
-// TODO(addaleax): Remove all of these.
-NODE_DEPRECATED("use command-line flags",
- NODE_EXTERN extern bool no_deprecation);
-#if HAVE_OPENSSL
-NODE_DEPRECATED("use command-line flags",
- NODE_EXTERN extern bool ssl_openssl_cert_store);
-# if NODE_FIPS_MODE
-NODE_DEPRECATED("use command-line flags",
- NODE_EXTERN extern bool enable_fips_crypto);
-NODE_DEPRECATED("user command-line flags",
- NODE_EXTERN extern bool force_fips_crypto);
-# endif
-#endif
-
// TODO(addaleax): Officially deprecate this and replace it with something
// better suited for a public embedder API.
NODE_EXTERN int Start(int argc, char* argv[]);