Commit f8bbe4c 1 parent 6b1f36d commit f8bbe4c Copy full SHA for f8bbe4c
File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -5766,7 +5766,7 @@ The function checks enabled features for the module.
5766
5766
If `feature` parameter has multiple `napi_features` bit flags, then the
5767
5767
function returns `true` only when all the requested fatures are enabled.
5768
5768
5769
- See [ `napi_features`][] for more details about Node-API features.
5769
+ See `napi_features` for more details about Node-API features.
5770
5770
5771
5771
## Memory management
5772
5772
Original file line number Diff line number Diff line change @@ -112,9 +112,7 @@ extern napi_features napi_module_features;
112
112
priv, \
113
113
NAPI_FEATURES_PTR{0}, \
114
114
}; \
115
- NAPI_C_CTOR(_register_##modname) { \
116
- napi_module_register(&_module); \
117
- } \
115
+ NAPI_C_CTOR(_register_##modname) { napi_module_register(&_module); } \
118
116
EXTERN_C_END
119
117
120
118
#define NAPI_MODULE_INITIALIZER_X (base , version ) \
You can’t perform that action at this time.
0 commit comments