mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
Merge branch 'trunk' into gui-example
This commit is contained in:
commit
a49b66e379
10 changed files with 142 additions and 46 deletions
|
@ -245,7 +245,7 @@ where
|
|||
|
||||
match opt_level {
|
||||
OptLevel::Development | OptLevel::Normal => morphic_lib::solve_trivial(program),
|
||||
OptLevel::Optimize => morphic_lib::solve(program),
|
||||
OptLevel::Optimize | OptLevel::Size => morphic_lib::solve(program),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -90,6 +90,7 @@ macro_rules! return_on_layout_error_help {
|
|||
pub enum OptLevel {
|
||||
Development,
|
||||
Normal,
|
||||
Size,
|
||||
Optimize,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue