Skip to content
Draft
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions libcxx/src/condition_variable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
//
//===----------------------------------------------------------------------===//

#include <chrono>
#include <condition_variable>
#include <limits>
#include <ratio>
#include <system_error>
#include <thread>

#if defined(__ELF__) && defined(_LIBCPP_LINK_PTHREAD_LIB)
Expand Down
3 changes: 3 additions & 0 deletions libcxx/src/experimental/time_zone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@
#include <cctype>
#include <chrono>
#include <expected>
#include <format>
#include <functional>
#include <map>
#include <numeric>
#include <optional>
#include <ranges>

#include "include/tzdb/time_zone_private.h"
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/filesystem/directory_iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <__config>
#include <errno.h>
#include <filesystem>
#include <memory>
#include <stack>
#include <utility>

Expand Down
2 changes: 2 additions & 0 deletions libcxx/src/filesystem/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

#include <__assert>
#include <__config>
#include <algorithm>
#include <cerrno>
#include <chrono>
#include <cstdarg>
#include <cstddef>
#include <cstdint>
Expand Down
2 changes: 2 additions & 0 deletions libcxx/src/filesystem/filesystem_clock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
#include <__config>
#include <__system_error/throw_system_error.h>
#include <chrono>
#include <errno.h>
#include <filesystem>
#include <ratio>
#include <time.h>

#if defined(_LIBCPP_WIN32API)
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/filesystem/filesystem_error.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <__config>
#include <__utility/unreachable.h>
#include <filesystem>
#include <memory>
#include <system_error>

#include "format_string.h"
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/include/ryu/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@

#include <__assert>
#include <__config>
#include <cstdint>
#include <cstring>

_LIBCPP_BEGIN_NAMESPACE_STD
Expand Down
2 changes: 2 additions & 0 deletions libcxx/src/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
# define _LIBCPP_SHARED_PTR_DEFINE_LEGACY_INLINE_FUNCTIONS
#endif

#include <functional>
#include <memory>
#include <typeinfo>

#if _LIBCPP_HAS_THREADS
# include <mutex>
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/memory_resource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//

#include <cstddef>
#include <cstdint>
#include <memory>
#include <memory_resource>

Expand Down
1 change: 1 addition & 0 deletions libcxx/src/mutex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <__utility/exception_guard.h>
#include <limits>
#include <mutex>
#include <system_error>

#include "include/atomic_support.h"

Expand Down
1 change: 1 addition & 0 deletions libcxx/src/random.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <__system_error/throw_system_error.h>
#include <limits>
#include <random>
#include <string>

#include <errno.h>
#include <stdio.h>
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/ryu/d2fixed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include <__assert>
#include <__config>
#include <charconv>
#include <cstddef>
#include <cstring>

#include "include/ryu/common.h"
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/ryu/d2s.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include <__assert>
#include <__config>
#include <charconv>
#include <cstddef>

#include "include/ryu/common.h"
#include "include/ryu/d2fixed.h"
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/ryu/f2s.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include <__assert>
#include <__config>
#include <charconv>
#include <cstddef>

#include "include/ryu/common.h"
#include "include/ryu/d2fixed.h"
Expand Down
2 changes: 2 additions & 0 deletions libcxx/src/thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
//
//===----------------------------------------------------------------------===//

#include <__system_error/throw_system_error.h>
#include <__thread/poll_with_backoff.h>
#include <__thread/timed_backoff_policy.h>
#include <exception>
#include <future>
#include <limits>
#include <thread>
#include <utility>
#include <vector>

#if __has_include(<unistd.h>)
Expand Down
1 change: 1 addition & 0 deletions libcxx/src/vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
//===----------------------------------------------------------------------===//

#include <stdexcept>
#include <vector>

_LIBCPP_BEGIN_NAMESPACE_STD
Expand Down
Loading