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>
This commit is contained in:
Ben Noordhuis
2016-06-28 21:21:21 +02:00
parent 9a6439aacc
commit f8d3f6fbf4
3 changed files with 3 additions and 5 deletions

View File

@@ -1248,9 +1248,7 @@ void Swap64(const FunctionCallbackInfo<Value>& args) {
std::swap(ts_obj_data[i], ts_obj_data[i + 7]);
std::swap(ts_obj_data[i + 1], ts_obj_data[i + 6]);
std::swap(ts_obj_data[i + 2], ts_obj_data[i + 5]);
// NOLINT added because current cpplint.py is old and doesn't know that
// std::swap() now lives in <utility> instead of <algorithm>.
std::swap(ts_obj_data[i + 3], ts_obj_data[i + 4]); // NOLINT
std::swap(ts_obj_data[i + 3], ts_obj_data[i + 4]);
}
}