From 4c72cfa31798a67c6daa25d474bcfe536e4fa0c0 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Tue, 26 Mar 2024 12:51:40 -0700 Subject: [PATCH] [libc] Remove definition of LIBC_NAMESPACE in test (#86704) The canonicalize test added in #85940 defined the LIBC_NAMESPACE macro. this macro is intended to be set only by the build system and never in the code. --- libc/test/src/math/smoke/CanonicalizeTest.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libc/test/src/math/smoke/CanonicalizeTest.h b/libc/test/src/math/smoke/CanonicalizeTest.h index ce855d516856..c8af83f19838 100644 --- a/libc/test/src/math/smoke/CanonicalizeTest.h +++ b/libc/test/src/math/smoke/CanonicalizeTest.h @@ -22,8 +22,6 @@ #define TEST_REGULAR(x, y, expected) TEST_SPECIAL(x, y, expected, 0) -#define LIBC_NAMESPACE __llvm_libc_19_0_0_git - template class CanonicalizeTest : public LIBC_NAMESPACE::testing::Test {