From 06ed0e81879c97d6f9cbbbc0bf2b3db06ba232cf 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 c44d31dc1bc09d..7f0529e5264454 100644 --- a/doc/api/addons.md +++ b/doc/api/addons.md @@ -1073,7 +1073,6 @@ The following `addon.cc` implements AtExit: ```cpp // addon.cc -#undef NDEBUG #include #include #include