Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10f62351 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents 45ee43b1 657db00e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
}