[libcxx-commits] [PATCH] D153216: [libc++][Modules] Add missing includes to public headers
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Jul 1 10:39:09 PDT 2023
philnik added inline comments.
================
Comment at: libcxx/include/type_traits:473
+#include <__type_traits/is_equality_comparable.h>
+#include <__type_traits/is_execution_policy.h>
#include <__type_traits/is_final.h>
----------------
Mordante wrote:
> @philnik `is_execution_policy` is part of `<execution>`. I don't find the reason why this has been added to the `__type_traits` directory. Is that a bug?
That's a good question. I probably just put it there because it feels like a type trait, and I didn't think about where it should actually live. It should probably be moved to `__execution/`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153216/new/
https://reviews.llvm.org/D153216
More information about the libcxx-commits
mailing list