From 4004fb6453d9cee1fc0160d6ebac62fa8e898131 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sat, 3 Sep 2022 13:35:48 +0200 Subject: [PATCH] [NFC][libc++] Uses the new way to mark Standard includes. --- libcxx/include/ranges | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libcxx/include/ranges b/libcxx/include/ranges index 82378a6b0daa..0129f295cfa1 100644 --- a/libcxx/include/ranges +++ b/libcxx/include/ranges @@ -303,12 +303,14 @@ namespace std { #include <__ranges/views.h> #include <__ranges/zip_view.h> #include <__tuple> // TODO: has to export std::tuple_size. Replace this, once is granularized. -#include // Required by the standard. -#include // Required by the standard. -#include // Required by the standard. #include #include +// standard-mandated includes +#include +#include +#include + #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header #endif