Skip to content

Commit

Permalink
src: remove obsolete NOLINT comments
Browse files Browse the repository at this point in the history
Obsoleted by the recent cpplint upgrade.

PR-URL: #7462
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
bnoordhuis authored and Myles Borins committed Jul 14, 2016
1 parent 68e9fd4 commit 23797eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/stream_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion src/string_search.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 23797eb

Please sign in to comment.