We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e9fd4 commit 23797ebCopy full SHA for 23797eb
src/stream_base.h
@@ -259,7 +259,7 @@ class StreamBase : public StreamResource {
259
const v8::PropertyCallbackInfo<v8::Value>& args);
260
261
template <class Base,
262
- int (StreamBase::*Method)( // NOLINT(whitespace/parens)
+ int (StreamBase::*Method)(
263
const v8::FunctionCallbackInfo<v8::Value>& args)>
264
static void JSMethod(const v8::FunctionCallbackInfo<v8::Value>& args);
265
src/string_search.h
@@ -171,7 +171,7 @@ class StringSearch : private StringSearchBase {
171
}
172
173
private:
174
- typedef size_t (*SearchFunction)( // NOLINT - it's not a cast!
+ typedef size_t (*SearchFunction)(
175
StringSearch<PatternChar, SubjectChar>*,
176
Vector<const SubjectChar>,
177
size_t);
0 commit comments