[libcxx-commits] [libcxx] [libc++] Fix missing #includes (PR #130536)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Mar 10 01:03:24 PDT 2025
================
@@ -6,8 +6,12 @@
//
//===----------------------------------------------------------------------===//
+#include <chrono>
#include <condition_variable>
+#include <limits>
+#include <ratio>
#include <thread>
+#include <__system_error/throw_system_error.h>
----------------
philnik777 wrote:
Why are you sometimes including top-level headers and sometimes detail headers?
https://github.com/llvm/llvm-project/pull/130536
More information about the libcxx-commits
mailing list