diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-06-29 00:20:15 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-06-29 00:20:15 +0200 |
| commit | a7715a44b8b48dc74c530d121ec50399f26d5e22 (patch) | |
| tree | 65d7bad8109f62e58352495d7b72b3d135e84cd3 | |
| parent | 2359b6bd91631d5d0489109743093056e149ed82 (diff) | |
| download | rust-a7715a44b8b48dc74c530d121ec50399f26d5e22.tar.gz rust-a7715a44b8b48dc74c530d121ec50399f26d5e22.zip | |
Remove `()` returned value
| -rw-r--r-- | src/builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/builder.rs b/src/builder.rs index 7f16d804103..1fce547ad1b 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -1608,7 +1608,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> { (value1, value2) } - fn filter_landing_pad(&mut self, pers_fn: Function<'gcc>) -> () { + fn filter_landing_pad(&mut self, pers_fn: Function<'gcc>) { // TODO(antoyo): generate the correct landing pad self.cleanup_landing_pad(pers_fn); } |
