Skip to content

Commit 70468ca

Browse files
committed
fixed lint error
1 parent 8ce35e6 commit 70468ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osc-codec-msgpack/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ mod tests {
165165
let root = read_value(&mut cursor).expect("must decode as msgpack Value");
166166

167167
// Helper: unwrap serde's externally tagged enum representation
168-
fn unwrap_enum<'a>(v: &'a Value) -> (&'a str, &'a Value) {
168+
fn unwrap_enum(v: &Value) -> (&str, &Value) {
169169
match v {
170170
// Map form: { "Variant": payload }
171171
Value::Map(kv) if kv.len() == 1 => {

0 commit comments

Comments
 (0)