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 | 3dcbc1e5bcddfade60a459caad642fd8c37e8f68 (patch) | |
| tree | a37ff4fa312089ca417e612882594ba3b1daa772 | |
| parent | a420d39afb992093bd0105aecfa033a640115c0a (diff) | |
| download | rust-3dcbc1e5bcddfade60a459caad642fd8c37e8f68.tar.gz rust-3dcbc1e5bcddfade60a459caad642fd8c37e8f68.zip | |
Remove `()` returned value
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/builder.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_codegen_gcc/src/builder.rs b/compiler/rustc_codegen_gcc/src/builder.rs index 7f16d804103..1fce547ad1b 100644 --- a/compiler/rustc_codegen_gcc/src/builder.rs +++ b/compiler/rustc_codegen_gcc/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); } | 
