Skip to content

Commit

Permalink
[libc++] Fix typo in _LIBCPP_REMOVE_TRANSITIVE_INCLUDES (llvm#78639)
Browse files Browse the repository at this point in the history
Spotted by inspection when trialling out
`_LIBCPP_REMOVE_TRANSITIVE_INCLUDES`. No other instances of `_LIPCPP_`
were found in the repo.
  • Loading branch information
bobsayshilol authored Jan 21, 2024
1 parent 547685d commit f73bf45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libcxx/include/concepts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ namespace std {
#include <__config>
#include <version>

#if _LIBCPP_STD_VER <= 20 && !defined(_LIPCPP_REMOVE_TRANSITIVE_INCLUDES)
#if _LIBCPP_STD_VER <= 20 && !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES)
# include <type_traits>
#endif

Expand Down
2 changes: 1 addition & 1 deletion libcxx/include/sstream
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ _LIBCPP_END_NAMESPACE_STD

_LIBCPP_POP_MACROS

#if _LIBCPP_STD_VER <= 20 && !defined(_LIPCPP_REMOVE_TRANSITIVE_INCLUDES)
#if _LIBCPP_STD_VER <= 20 && !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES)
# include <type_traits>
#endif

Expand Down

0 comments on commit f73bf45

Please sign in to comment.