[libcxx-commits] [PATCH] D103583: [libcxx][gardening] Move all algorithms into their own headers.
Christopher Di Bella via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jun 2 20:25:31 PDT 2021
cjdb added inline comments.
================
Comment at: libcxx/include/module.modulemap:220-223
+ umbrella "__algorithm"
+ explicit module * {
+ export *
+ }
----------------
You'll need to replicate what I do in D103551 for every algorithm header.
================
Comment at: libcxx/include/module.modulemap:314-315
header "functional"
+ umbrella "__functional"
export *
}
----------------
================
Comment at: libcxx/include/module.modulemap:354-357
+ umbrella "__iterator"
+ explicit module * {
+ export *
+ }
----------------
Delete.
================
Comment at: libcxx/include/module.modulemap:427-430
+ umbrella "__ranges"
+ explicit module * {
+ export *
+ }
----------------
Delete.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103583/new/
https://reviews.llvm.org/D103583
More information about the libcxx-commits
mailing list