commit | a712e2164aa7a34bae14c2230aeff84aaacdae09 | [log] [tgz] |
---|---|---|
author | George Burgess IV <gbiv@google.com> | Thu Mar 01 22:19:41 2018 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Thu Mar 01 22:19:41 2018 +0000 |
tree | ccb847c34945b03e3261ab092813031e70f1caad | |
parent | 29717e60b49221554999f868432c7d977495e9a1 [diff] | |
parent | ad4025b35b5f60ca074c25ea641dfe5942defccc [diff] |
Merge "Add a NOLINT for the memory leak we added" am: 10f62351eb am: 4e3ae2cbfa am: ad4025b35b Change-Id: I1d4831bc70b8874e66583f4a130b3a711c24b019
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; }