Browse Source

src: remove obsolete NOLINT comments

Obsoleted by the recent cpplint upgrade.

PR-URL: https://github.com/nodejs/node/pull/7462
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
v4.x
Ben Noordhuis 8 years ago
committed by Myles Borins
parent
commit
23797eb037
  1. 2
      src/stream_base.h
  2. 2
      src/string_search.h

2
src/stream_base.h

@ -259,7 +259,7 @@ class StreamBase : public StreamResource {
const v8::PropertyCallbackInfo<v8::Value>& args);
template <class Base,
int (StreamBase::*Method)( // NOLINT(whitespace/parens)
int (StreamBase::*Method)(
const v8::FunctionCallbackInfo<v8::Value>& args)>
static void JSMethod(const v8::FunctionCallbackInfo<v8::Value>& args);

2
src/string_search.h

@ -171,7 +171,7 @@ class StringSearch : private StringSearchBase {
}
private:
typedef size_t (*SearchFunction)( // NOLINT - it's not a cast!
typedef size_t (*SearchFunction)(
StringSearch<PatternChar, SubjectChar>*,
Vector<const SubjectChar>,
size_t);

Loading…
Cancel
Save