diff options
author | Andrey Khalyavin <halyavin@gmail.com> | 2022-04-17 16:48:20 +0300 |
---|---|---|
committer | Andrey Khalyavin <halyavin@gmail.com> | 2022-04-17 16:48:20 +0300 |
commit | ea8331cc874debefbd3a966b358ff0032e9c8827 (patch) | |
tree | cd0d944bd80e6b3b90a7b553c0151e2d75213453 /contrib/libs/cxxsupp/libcxx/include/module.modulemap | |
parent | 863768d27d4cd96c97378d4dc463aec57933b1f0 (diff) | |
download | ydb-ea8331cc874debefbd3a966b358ff0032e9c8827.tar.gz |
Update libc++ to 5726e559 (14 Jan 2022).
Notable changes:
* chrono modularization
ref:42040cfb4887a3eaac1dd7bc783623c820734637
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/module.modulemap')
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/module.modulemap | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/module.modulemap b/contrib/libs/cxxsupp/libcxx/include/module.modulemap index e7f197ec83f..33e0ecf6997 100644 --- a/contrib/libs/cxxsupp/libcxx/include/module.modulemap +++ b/contrib/libs/cxxsupp/libcxx/include/module.modulemap @@ -364,6 +364,16 @@ module std [system] { module chrono { header "chrono" export * + + module __chrono { + module calendar { private header "__chrono/calendar.h" } + module duration { private header "__chrono/duration.h" } + module file_clock { private header "__chrono/file_clock.h" } + module high_resolution_clock { private header "__chrono/high_resolution_clock.h" } + module steady_clock { private header "__chrono/steady_clock.h" } + module system_clock { private header "__chrono/system_clock.h" } + module time_point { private header "__chrono/time_point.h" } + } } module codecvt { header "codecvt" |