From 8a8e0840cd23a1882fc0b45ead960c099593f841 Mon Sep 17 00:00:00 2001 From: Jimmy Thomson Date: Tue, 1 Aug 2017 11:19:18 -0700 Subject: [PATCH] build: fix build break when omitting icu When building without ICU (`vcbuild.bat intl-none`) the unicode/ucnv.h header is not available, which caused compilation errors prior to this change. PR-URL: https://github.com/nodejs/node-chakracore/pull/352 Reviewed-By: Kunal Pathak --- src/node_i18n.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_i18n.h b/src/node_i18n.h index f7801ce6668..adf9feb414d 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)