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 77a7b32 commit 2c5a572Copy full SHA for 2c5a572
crates/rustc_codegen_c_ast/src/func.rs
@@ -47,7 +47,7 @@ impl<'mx> CFuncKind<'mx> {
47
}
48
49
/// Get a new unique local variable.
50
- pub fn next_local_var(&self) -> CValue {
+ pub fn next_local_var(&self) -> CValue<'_> {
51
let val = CValue::Local(self.local_var_counter.get());
52
self.local_var_counter.set(self.local_var_counter.get() + 1);
53
val
0 commit comments