summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Stefano Cianciulli <scianciulli@google.com> 2022-07-20 13:29:53 +0000
committer Stefano Cianciulli <scianciulli@google.com> 2022-07-20 13:29:53 +0000
commitf6c3804110f97ef765cdb78dceaf4e49099152be (patch)
tree546a64fd051dbda525c9bd1f7f84b1aa108bef4f
parent92e70bd8639c0d65518f519ecb250f004c5d8d3d (diff)
Suppress bugprone-suspicious-include clang-tidy issue
Test: m tidy-art Change-Id: Ic47568ba5c74ba33670bca25c7fed404fb5a450a
-rw-r--r--runtime/gc/allocator/art-dlmalloc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/allocator/art-dlmalloc.cc b/runtime/gc/allocator/art-dlmalloc.cc
index 3340b21f51..de0c85a407 100644
--- a/runtime/gc/allocator/art-dlmalloc.cc
+++ b/runtime/gc/allocator/art-dlmalloc.cc
@@ -39,7 +39,7 @@ static void art_heap_usage_error(const char* function, void* p);
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#pragma GCC diagnostic ignored "-Wnull-pointer-arithmetic"
#pragma GCC diagnostic ignored "-Wexpansion-to-defined"
-#include "dlmalloc.c"
+#include "dlmalloc.c" // NOLINT
// Note: dlmalloc.c uses a DEBUG define to drive debug code. This interferes with the DEBUG severity
// of libbase, so undefine it now.
#undef DEBUG