[rt][nfc] Rewrite #ifndef as #if defined().

This commit is contained in:
Alexander Belyaev 2021-07-19 14:17:13 +02:00
parent 3b03d9b874
commit f58a1f65e7
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ TEST_F(BacktraceGuardedPoolAllocatorDeathTest, DoubleFree) {
}
TEST_F(BacktraceGuardedPoolAllocatorDeathTest, UseAfterFree) {
#ifdef __linux__ && __ARM_ARCH == 7
#if defined(__linux__) && __ARM_ARCH == 7
// Incomplete backtrace on Armv7 Linux
GTEST_SKIP();
#endif