Skip to content

Commit

Permalink
[libc++][NFC] Fix include guard for some detail header
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Oct 4, 2021
1 parent 2e93453 commit 83bc881
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libcxx/include/__memory/allocator_arg_t.h
Expand Up @@ -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>
Expand Down Expand Up @@ -75,4 +75,4 @@ void __user_alloc_construct_impl (integral_constant<int, 2>, _Tp *__storage, con

_LIBCPP_END_NAMESPACE_STD

#endif // _LIBCPP___FUNCTIONAL___ALLOCATOR_ARG_T_H
#endif // _LIBCPP___FUNCTIONAL_ALLOCATOR_ARG_T_H

0 comments on commit 83bc881

Please sign in to comment.