[libcxx-commits] [libcxx] 748a29f - [libc++][NFC] Fix incorrect include guard

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Nov 18 05:29:20 PST 2024


Author: Louis Dionne
Date: 2024-11-18T14:29:14+01:00
New Revision: 748a29f052749b9938480edbf29717bd6742fc66

URL: https://github.com/llvm/llvm-project/commit/748a29f052749b9938480edbf29717bd6742fc66
DIFF: https://github.com/llvm/llvm-project/commit/748a29f052749b9938480edbf29717bd6742fc66.diff

LOG: [libc++][NFC] Fix incorrect include guard

Added: 
    

Modified: 
    libcxx/include/__memory/allocator_arg_t.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__memory/allocator_arg_t.h b/libcxx/include/__memory/allocator_arg_t.h
index 7e66da740cd4fd..dc4398bb02d349 100644
--- a/libcxx/include/__memory/allocator_arg_t.h
+++ b/libcxx/include/__memory/allocator_arg_t.h
@@ -7,8 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H
-#define _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H
+#ifndef _LIBCPP___MEMORY_ALLOCATOR_ARG_T_H
+#define _LIBCPP___MEMORY_ALLOCATOR_ARG_T_H
 
 #include <__config>
 #include <__memory/uses_allocator.h>
@@ -72,4 +72,4 @@ __user_alloc_construct_impl(integral_constant<int, 2>, _Tp* __storage, const _Al
 
 _LIBCPP_END_NAMESPACE_STD
 
-#endif // _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H
+#endif // _LIBCPP___MEMORY_ALLOCATOR_ARG_T_H


        


More information about the libcxx-commits mailing list