commit | 7e83e04c732303706b2f1313e6931a3e8598f2ea | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Thu Mar 01 22:00:02 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Mar 01 22:00:02 2018 +0000 |
tree | e40f128d8e0ab692d99296476127009b775dbe8e | |
parent | 69bb8469aa9514448963d1f5410723f992068e44 [diff] | |
parent | 311c8948bce2650efb3827b34c6991d56d6650eb [diff] |
Merge "Add a NOLINT for the memory leak we added"
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; }