From 21c61e820206a93746d61b9c566d2dc217888c98 Mon Sep 17 00:00:00 2001 From: Vladimir Morozov Date: Fri, 16 Dec 2022 08:42:02 -0800 Subject: [PATCH] attempt to fix cpp linter issue --- src/node_api.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/node_api.h b/src/node_api.h index 2512cd0c5a4e3b..3fdbd5e31c50d6 100644 --- a/src/node_api.h +++ b/src/node_api.h @@ -201,9 +201,7 @@ typedef struct napi_module { #else #define NAPI_MODULE(modname, regfunc) \ - NAPI_MODULE_INIT() { \ - return regfunc(env, exports); \ - } + NAPI_MODULE_INIT() { return regfunc(env, exports); } #endif // __wasm32__