Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions include/cpp2util.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@
#include <utility>
#include <variant>
#include <memory>
#ifdef __cpp_lib_memory_resource
#if __has_include(<memory_resource>)
#include <memory_resource>
#elif __has_include(<experimental/memory_resource>)
#include <experimental/memory_resource>
#endif
#include <new>
#include <scoped_allocator>
Expand All @@ -106,7 +108,9 @@
#include <cctype>
#include <charconv>
#include <cstring>
#include <cuchar>
#if __has_include(<cuchar>)
#include <cuchar>
#endif
#include <cwchar>
#include <cwctype>
#ifdef __cpp_lib_format
Expand Down Expand Up @@ -174,7 +178,9 @@
#include <semaphore>
#endif
#include <shared_mutex>
#include <stop_token>
#if __has_include(<stop_token>)
#include <stop_token>
#endif
#include <thread>
#include <iso646.h>
#endif
Expand Down