commit | 27162689c765344af1599369c7a8951589e11b65 | [log] [tgz] |
---|---|---|
author | George Burgess IV <gbiv@google.com> | Thu Mar 01 22:10:28 2018 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Thu Mar 01 22:10:28 2018 +0000 |
tree | e40f128d8e0ab692d99296476127009b775dbe8e | |
parent | 702818b9bc1e1bb148a54e9dd97ff87bed166ae6 [diff] | |
parent | 7e83e04c732303706b2f1313e6931a3e8598f2ea [diff] |
Merge "Add a NOLINT for the memory leak we added" am: 10f62351eb Change-Id: I67067e5611b14a6a7a818adb503a07f8a9e2dcef
diff --git a/adb/client/main.cpp b/adb/client/main.cpp index e5666bc..31cb853 100644 --- a/adb/client/main.cpp +++ b/adb/client/main.cpp
@@ -77,6 +77,7 @@ static void intentionally_leak() { void* p = ::operator new(1); + // The analyzer is upset about this leaking. NOLINTNEXTLINE LOG(INFO) << "leaking pointer " << p; }