Merge "Add a NOLINT for the memory leak we added"

This commit is contained in:
Treehugger Robot 2018-03-01 22:00:02 +00:00 committed by Gerrit Code Review
commit 10f62351eb

View file

@ -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;
}