From 51fd86730feabbe813e8b3630ed8289aeaec5bc4 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 9 Oct 2018 14:19:12 +0200 Subject: [PATCH] src: remove unused limits header from util-inl.h This commit removes the inclusion of limits.h which was introduced in commit e812be4a55915575fc1afce739848026a48b781e ("src: make CLI options programatically accesible"), but as far as I can see it was not used there either so it look like it can safely be removed. PR-URL: https://github.com/nodejs/node/pull/23353 Reviewed-By: Colin Ihrig Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Anna Henningsen --- src/util-inl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util-inl.h b/src/util-inl.h index bbee32615ff729..e945c614d49e81 100644 --- a/src/util-inl.h +++ b/src/util-inl.h @@ -24,7 +24,6 @@ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS -#include // INT_MAX #include #include "util.h"