From 87e108059b15ee05ae65d65ad37f97a47983629a Mon Sep 17 00:00:00 2001 From: Jimmy Thomson Date: Fri, 28 Jul 2017 14:47:52 -0700 Subject: [PATCH] build: fix build without icu When building without ICU (`vcbuild.bat intl-none`) the unicode/ucnv.h header is not available, which causes compilation errors. PR-URL: https://github.com/nodejs/node/pull/14533 Reviewed-By: Timothy Gu Reviewed-By: Refael Ackermann Reviewed-By: James M Snell --- src/node_i18n.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_i18n.h b/src/node_i18n.h index f7801ce6668468..adf9feb414df5c 100644 --- a/src/node_i18n.h +++ b/src/node_i18n.h @@ -25,7 +25,6 @@ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #include "node.h" -#include #include #if defined(NODE_HAVE_I18N_SUPPORT)