Merge "Suppress clang-tidy performance warnings in libmemunreachable."

This commit is contained in:
Treehugger Robot 2016-07-28 01:04:20 +00:00 committed by Gerrit Code Review
commit 95b0495534

View file

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