From a2d423b133f5e38a6263ce853ce27e7b0b8d7636 Mon Sep 17 00:00:00 2001 From: Oleksandr T Date: Fri, 1 Nov 2024 21:08:27 +0200 Subject: [PATCH] [libc] rename LLVM_LIBC_SRC___SUPPORT_UINT_H to LLVM_LIBC_SRC___SUPPORT_BIG_INT_H for consistent naming --- libc/src/__support/big_int.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libc/src/__support/big_int.h b/libc/src/__support/big_int.h index 246b89f08f2ff..bea0abc84b213 100644 --- a/libc/src/__support/big_int.h +++ b/libc/src/__support/big_int.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_LIBC_SRC___SUPPORT_UINT_H -#define LLVM_LIBC_SRC___SUPPORT_UINT_H +#ifndef LLVM_LIBC_SRC___SUPPORT_BIG_INT_H +#define LLVM_LIBC_SRC___SUPPORT_BIG_INT_H #include "src/__support/CPP/array.h" #include "src/__support/CPP/bit.h" // countl_zero @@ -1373,4 +1373,4 @@ first_trailing_one(T value) { } // namespace LIBC_NAMESPACE_DECL -#endif // LLVM_LIBC_SRC___SUPPORT_UINT_H +#endif // LLVM_LIBC_SRC___SUPPORT_BIG_INT_H