File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -1248,9 +1248,7 @@ void Swap64(const FunctionCallbackInfo<Value>& args) {
1248
1248
std::swap (ts_obj_data[i], ts_obj_data[i + 7 ]);
1249
1249
std::swap (ts_obj_data[i + 1 ], ts_obj_data[i + 6 ]);
1250
1250
std::swap (ts_obj_data[i + 2 ], ts_obj_data[i + 5 ]);
1251
- // NOLINT added because current cpplint.py is old and doesn't know that
1252
- // std::swap() now lives in <utility> instead of <algorithm>.
1253
- std::swap (ts_obj_data[i + 3 ], ts_obj_data[i + 4 ]); // NOLINT
1251
+ std::swap (ts_obj_data[i + 3 ], ts_obj_data[i + 4 ]);
1254
1252
}
1255
1253
}
1256
1254
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ class StreamBase : public StreamResource {
261
261
const v8::PropertyCallbackInfo<v8::Value>& args);
262
262
263
263
template <class Base ,
264
- int (StreamBase::*Method)( // NOLINT(whitespace/parens)
264
+ int (StreamBase::*Method)(
265
265
const v8::FunctionCallbackInfo<v8::Value>& args)>
266
266
static void JSMethod(const v8::FunctionCallbackInfo<v8::Value>& args);
267
267
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ class StringSearch : private StringSearchBase {
134
134
}
135
135
136
136
private:
137
- typedef size_t (*SearchFunction)( // NOLINT - it's not a cast!
137
+ typedef size_t (*SearchFunction)(
138
138
StringSearch<Char>*,
139
139
Vector<const Char>,
140
140
size_t );
You can’t perform that action at this time.
0 commit comments