From b5904a20548f71e17d8cb900e02250b3821ce4a2 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 3 Jul 2017 06:58:45 +0200 Subject: [PATCH] doc: remove undef NDEBUG from addons.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When working on commit 0d95a0b60a87533c54b517d132e16401fe28909b ("test: remove undef NDEBUG from at-exit addons test) I searched for usages of undef NDEBUG but did not include the doc directory (but I did include the test directory) and missed this one. Commit 1f02569f8db9cb0101807df4982534738f0161b2 ("tools: fix tools/addon-verify.js") enables the code in the "AtExit" section to be included in the test/addons diretory and this code will again be tested. PR-URL: https://github.com/nodejs/node/pull/14048 Reviewed-By: Michaƫl Zasso --- doc/api/addons.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/api/addons.md b/doc/api/addons.md index d1c9036f54183d..f8f1272c72c068 100644 --- a/doc/api/addons.md +++ b/doc/api/addons.md @@ -1053,7 +1053,6 @@ The following `addon.cc` implements AtExit: ```cpp // addon.cc -#undef NDEBUG #include #include #include