diff --git a/libc/src/assert/assert.h b/libc/src/assert/assert.h index 0daf9c4e1e616..6f352af1988b3 100644 --- a/libc/src/assert/assert.h +++ b/libc/src/assert/assert.h @@ -1,3 +1,4 @@ +// NOLINT(llvm-header-guard) https://github.com/llvm/llvm-project/issues/83339 //===-- Internal header for assert ------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. @@ -6,9 +7,6 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_LIBC_SRC_ASSERT_ASSERT_H -#define LLVM_LIBC_SRC_ASSERT_ASSERT_H - #include "src/assert/__assert_fail.h" // There is no header guard here since assert is intended to be capable of being @@ -25,5 +23,3 @@ : LIBC_NAMESPACE::__assert_fail(#e, __FILE__, __LINE__, \ __PRETTY_FUNCTION__)) #endif // NDEBUG - -#endif // LLVM_LIBC_SRC_ASSERT_ASSERT_H