diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-05-25 05:30:05 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-05-25 05:30:05 +0000 |
commit | 39b56d80a187c337b6b34a0bd75869f5681a47a8 (patch) | |
tree | 7b3cc89a7b910a54ee7d66086b89a81ed19261ed /libcxx/include/module.modulemap | |
parent | d791d4ea3c254a0112c1c67c7fd5054a39efa76b (diff) | |
download | bcm5719-llvm-39b56d80a187c337b6b34a0bd75869f5681a47a8.tar.gz bcm5719-llvm-39b56d80a187c337b6b34a0bd75869f5681a47a8.zip |
Remove <experimental/coroutine> from the module map for now. It doesn't work unless modules are enabled
llvm-svn: 303838
Diffstat (limited to 'libcxx/include/module.modulemap')
-rw-r--r-- | libcxx/include/module.modulemap | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index 737ef9a7d43..ad765c07d48 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -501,10 +501,12 @@ module std [system] { header "experimental/chrono" export * } - module coroutine { - header "experimental/coroutine" - export * - } + // FIXME: This module only works when -fcoroutines-ts is enabled and it + // breaks the modules build otherwise. + // module coroutine { + // header "experimental/coroutine" + // export * + // } module deque { header "experimental/deque" export * |