From 83bc88174edd4c4995a319c90c28df2120a734f9 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Mon, 4 Oct 2021 13:36:08 -0400 Subject: [PATCH] [libc++][NFC] Fix include guard for some detail header --- libcxx/include/__memory/allocator_arg_t.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libcxx/include/__memory/allocator_arg_t.h b/libcxx/include/__memory/allocator_arg_t.h index 053af24..f5a116d 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___FUNCTIONAL_ALLOCATOR_ARG_T_H +#define _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H #include <__config> #include <__memory/uses_allocator.h> @@ -75,4 +75,4 @@ void __user_alloc_construct_impl (integral_constant, _Tp *__storage, con _LIBCPP_END_NAMESPACE_STD -#endif // _LIBCPP___FUNCTIONAL___ALLOCATOR_ARG_T_H +#endif // _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H -- 2.7.4