Move layout_id from mono to gen

This is because it's actually important that mono never use this.
It should only be used in gen, because it's only safe to use
synchronously, and it's important that mono be done in parallel.

Moving it to gen guarantees that mono will not use it, even accidentally!
This commit is contained in:
Richard Feldman 2020-05-10 11:27:03 -04:00
parent bd6228de8b
commit bf11262e61
7 changed files with 7 additions and 7 deletions

View file

@ -13,7 +13,6 @@
pub mod expr;
pub mod layout;
pub mod layout_id;
// Temporary, while we can build up test cases and optimize the exhaustiveness checking.
// For now, following this warning's advice will lead to nasty type inference errors.