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

Commit 223bb4e2 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Suppress clang-tidy performance warnings in libmemunreachable.

Bug: 30413862
Change-Id: If3ed64d2e1ca1f46599de9fe97c769f468ee1a68
Test: build with WITH_TIDY=1
parent 02ccdc5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ TEST_F(AllocatorTest, shared) {

  Allocator<int>::shared_ptr ptr = allocator.make_shared(0);
  {
    auto ptr2 = ptr;
    auto ptr2 = ptr;  // NOLINT, test copy of ptr
  }
  ASSERT_NE(ptr, nullptr);
}