Commit cd59c53a authored by Clemens Backes's avatar Clemens Backes Committed by V8 LUCI CQ

[cleanup][utils] Remove redundant NOLINT annotations

cpplint rules change over time, and we change the exact rules we enable
for v8. This CL removes NOLINT annotations which are not needed
according to the currently enabled rules.

R=mlippautz@chromium.org

Bug: v8:11717
Change-Id: I26602ad8aa509646053ec1bdd79470116b89dc3f
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2859853
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74292}
parent bcff0072
......@@ -19,7 +19,7 @@
#include "src/utils/vector.h"
#if V8_LIBC_BIONIC
#include <malloc.h> // NOLINT
#include <malloc.h>
#include "src/base/platform/wrappers.h"
#endif
......
......@@ -19,7 +19,7 @@
#if defined(ANDROID) && !defined(V8_ANDROID_LOG_STDOUT)
#define LOG_TAG "v8"
#include <android/log.h> // NOLINT
#include <android/log.h>
#endif
namespace v8 {
......
......@@ -8,7 +8,7 @@
#include <cstddef>
#include <cstdio>
#include <cstring>
#include <ostream> // NOLINT
#include <ostream>
#include <streambuf>
#include "include/v8config.h"
......
......@@ -4,7 +4,7 @@
// The GYP based build ends up defining USING_V8_SHARED when compiling this
// file.
#undef USING_V8_SHARED // NOLINT
#undef USING_V8_SHARED
#include "include/v8.h"
#if V8_OS_WIN
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment