From 7503e4c88273d4c6559af9324174b98ed1ed27ec Mon Sep 17 00:00:00 2001 From: Trevor Norris Date: Thu, 3 Oct 2013 20:43:35 -0700 Subject: [PATCH] lint: fix a cpplint error Added a NOLINT so that cpplint won't complain about some code. --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 5da4cd4..bea3380 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3158,7 +3158,7 @@ void Init(int* argc, #ifdef __POSIX__ // Raise the open file descriptor limit. - { + { // NOLINT (whitespace/braces) struct rlimit lim; if (getrlimit(RLIMIT_NOFILE, &lim) == 0 && lim.rlim_cur != lim.rlim_max) { // Do a binary search for the limit. -- 2.7.4