[libcxx-commits] [PATCH] D104415: [libcxx][module-map] 🎨 updates module map to account for ranges headers

Christopher Di Bella via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jun 17 09:53:13 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rGd827af03bc1d: [libcxx][module-map] 🎨 updates module map to account for ranges headers (authored by cjdb).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D104415/new/

https://reviews.llvm.org/D104415

Files:
  libcxx/include/module.modulemap


Index: libcxx/include/module.modulemap
===================================================================
--- libcxx/include/module.modulemap
+++ libcxx/include/module.modulemap
@@ -452,14 +452,17 @@
     export *
 
     module __ranges {
-      module access                 { header "__ranges/access.h"                 }
-      module concepts               { header "__ranges/concepts.h"               }
-      module data                   { header "__ranges/data.h"                   }
-      module empty                  { header "__ranges/empty.h"                  }
-      module enable_borrowed_range  { header "__ranges/enable_borrowed_range.h"  }
-      module enable_view            { header "__ranges/enable_view.h"            }
-      module size                   { header "__ranges/size.h"                   }
-      module view_interface         { header "__ranges/view_interface.h"         }
+      module access                 { header "__ranges/access.h"                }
+      module concepts               { header "__ranges/concepts.h"              }
+      module data                   { header "__ranges/data.h"                  }
+      module empty                  { header "__ranges/empty.h"                 }
+      module empty_view             { header "__ranges/empty_view.h"            }
+      module enable_borrowed_range  { header "__ranges/enable_borrowed_range.h" }
+      module enable_view            { header "__ranges/enable_view.h"           }
+      module ref_view               { header "__ranges/ref_view.h"              }
+      module size                   { header "__ranges/size.h"                  }
+      module subrange               { header "__ranges/subrange.h"              }
+      module view_interface         { header "__ranges/view_interface.h"        }
     }
   }
   module ratio {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104415.352769.patch
Type: text/x-patch
Size: 1855 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210617/b341073e/attachment.bin>


More information about the libcxx-commits mailing list