lint: fix a cpplint error
authorTrevor Norris <trev.norris@gmail.com>
Fri, 4 Oct 2013 03:43:35 +0000 (20:43 -0700)
committerTrevor Norris <trev.norris@gmail.com>
Fri, 11 Oct 2013 19:25:42 +0000 (12:25 -0700)
Added a NOLINT so that cpplint won't complain about some code.

src/node.cc

index 5da4cd4..bea3380 100644 (file)
@@ -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.