commit | 7089d453f04733e08e47f7cf8fe4eec6ee4a1506 | [log] [tgz] |
---|---|---|
author | George Burgess IV <gbiv@google.com> | Thu Mar 01 22:15:07 2018 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Thu Mar 01 22:15:07 2018 +0000 |
tree | ee942b3c1c3ff9506cce272d558ed20e5747dd68 | |
parent | 1e4845a6752b1661ea5d530b5884c9f7b2c1f226 [diff] | |
parent | 27162689c765344af1599369c7a8951589e11b65 [diff] |
Merge "Add a NOLINT for the memory leak we added" am: 10f62351eb am: 4e3ae2cbfa Change-Id: I32d7a736428f38c68ccf90947841732eaae4c224
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; }