From 29d24db91420300eb72fc8860ed24c3c72c4eac8 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Sun, 10 May 2020 09:35:23 +0900 Subject: [PATCH] src: add #include in json_utils.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When precompile headers are disabled this file would cause compilation errors due to #include not included. PR-URL: https://github.com/nodejs/node/pull/33332 Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso Reviewed-By: Richard Lau Reviewed-By: James M Snell --- src/json_utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/json_utils.h b/src/json_utils.h index 21e204328058ee..3ece077a91705d 100644 --- a/src/json_utils.h +++ b/src/json_utils.h @@ -6,6 +6,7 @@ #include #include #include +#include namespace node {