We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c2a49 commit 2a5720dCopy full SHA for 2a5720d
crates/artifacts/solc/src/lib.rs
@@ -467,7 +467,8 @@ impl Settings {
467
self.via_ir = Some(true);
468
self.optimizer.details = Some(OptimizerDetails {
469
peephole: Some(false),
470
- inliner: Some(false),
+ // Set to None as it is only supported for solc starting from 0.8.5.
471
+ inliner: None,
472
jumpdest_remover: Some(false),
473
order_literals: Some(false),
474
deduplicate: Some(false),
0 commit comments