Skip to content

Commit 99941f6

Browse files
committed
[libc++][NFC] Fix header guard for <typeinfo>
1 parent 2c3c190 commit 99941f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/typeinfo

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

10-
#ifndef __LIBCPP_TYPEINFO
11-
#define __LIBCPP_TYPEINFO
10+
#ifndef _LIBCPP_TYPEINFO
11+
#define _LIBCPP_TYPEINFO
1212

1313
/*
1414
@@ -419,4 +419,4 @@ _LIBCPP_END_NAMESPACE_STD
419419
# include <type_traits>
420420
#endif
421421

422-
#endif // __LIBCPP_TYPEINFO
422+
#endif // _LIBCPP_TYPEINFO

0 commit comments

Comments
 (0)