[libcxx-commits] [libcxx] a08b005 - [libc++] Add missing includes to __format/container_adaptor.h
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 8 18:29:23 PST 2023
Author: Nikolas Klauser
Date: 2023-03-09T03:29:12+01:00
New Revision: a08b005c71d677e077ca3d47a548955f147a70bd
URL: https://github.com/llvm/llvm-project/commit/a08b005c71d677e077ca3d47a548955f147a70bd
DIFF: https://github.com/llvm/llvm-project/commit/a08b005c71d677e077ca3d47a548955f147a70bd.diff
LOG: [libc++] Add missing includes to __format/container_adaptor.h
Added:
Modified:
libcxx/include/__format/container_adaptor.h
Removed:
################################################################################
diff --git a/libcxx/include/__format/container_adaptor.h b/libcxx/include/__format/container_adaptor.h
index f893de620f6a..9439b10c2991 100644
--- a/libcxx/include/__format/container_adaptor.h
+++ b/libcxx/include/__format/container_adaptor.h
@@ -21,6 +21,8 @@
#include <__format/range_default_formatter.h>
#include <__ranges/all.h>
#include <__ranges/ref_view.h>
+#include <__type_traits/is_const.h>
+#include <__type_traits/maybe_const.h>
#include <queue>
#include <stack>
More information about the libcxx-commits
mailing list