From 923e282fe231ffa6030745530e5ac3386ff52938 Mon Sep 17 00:00:00 2001 From: JckXia Date: Fri, 2 Jul 2021 13:12:01 -0400 Subject: [PATCH] Remove default parameter --- napi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/napi.h b/napi.h index c7948436e..c3e02cb88 100644 --- a/napi.h +++ b/napi.h @@ -542,7 +542,7 @@ namespace Napi { static Symbol For(napi_env env, const std::string& description); // Create a symbol in the global registry, C style string (null terminated) - static Symbol For(napi_env env, const char* description = nullptr); + static Symbol For(napi_env env, const char* description); // Create a symbol in the global registry, String value describing the symbol static Symbol For(napi_env env, String description);