From 07f371eea27e6d70ea1d1f99df3091b888a8cfe4 Mon Sep 17 00:00:00 2001 From: Jimmy Thomson Date: Fri, 28 Jul 2017 14:47:52 -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. --- 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)