[libcxx-commits] [libcxx] [libc++] Fix missing #includes (PR #130536)

via libcxx-commits libcxx-commits at lists.llvm.org
Mon Mar 10 18:22:13 PDT 2025


================
@@ -6,8 +6,12 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include <chrono>
 #include <condition_variable>
+#include <limits>
+#include <ratio>
 #include <thread>
+#include <__system_error/throw_system_error.h>
----------------
matts1 wrote:

I think the only top-level header that has a detail header I included was chrono. I did it because there were a few includes it'd require, but I'll fix it up now.

https://github.com/llvm/llvm-project/pull/130536


More information about the libcxx-commits mailing list