Skip to content

Commit 748a29f

Browse files
committed
[libc++][NFC] Fix incorrect include guard
1 parent 40ea61b commit 748a29f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__memory/allocator_arg_t.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//
88
//===----------------------------------------------------------------------===//
99

10-
#ifndef _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H
11-
#define _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H
10+
#ifndef _LIBCPP___MEMORY_ALLOCATOR_ARG_T_H
11+
#define _LIBCPP___MEMORY_ALLOCATOR_ARG_T_H
1212

1313
#include <__config>
1414
#include <__memory/uses_allocator.h>
@@ -72,4 +72,4 @@ __user_alloc_construct_impl(integral_constant<int, 2>, _Tp* __storage, const _Al
7272

7373
_LIBCPP_END_NAMESPACE_STD
7474

75-
#endif // _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H
75+
#endif // _LIBCPP___MEMORY_ALLOCATOR_ARG_T_H

0 commit comments

Comments
 (0)