diff --git a/adb/client/main.cpp b/adb/client/main.cpp index e5666bc8d..31cb8536a 100644 --- a/adb/client/main.cpp +++ b/adb/client/main.cpp @@ -77,6 +77,7 @@ void adb_server_cleanup() { static void intentionally_leak() { void* p = ::operator new(1); + // The analyzer is upset about this leaking. NOLINTNEXTLINE LOG(INFO) << "leaking pointer " << p; }