Index: runtime/include/dart_api.h |
diff --git a/runtime/include/dart_api.h b/runtime/include/dart_api.h |
index 721f5ad8f715fc9976c7cb191895092eff2b8aba..652c7913c5943afd810738d1a94a09e430474718 100644 |
--- a/runtime/include/dart_api.h |
+++ b/runtime/include/dart_api.h |
@@ -2446,7 +2446,7 @@ enum { |
#define BITMASK(size) ((1 << size) - 1) |
#define DART_NATIVE_ARG_DESCRIPTOR(type, position) \ |
(((type & BITMASK(kNativeArgTypeSize)) << kNativeArgTypePos) | \ |
- (position & BITMASK(kNativeArgNumberSize))) // NOLINT |
+ (position & BITMASK(kNativeArgNumberSize))) |
/** |
* Gets the native arguments based on the types passed in and populates |