From 3b7f3e0c238ba13a44dd5fc5d309c08691324d73 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Mon, 25 Jan 2021 12:37:49 -0800 Subject: [PATCH] Remove semicolon to quiet a rustc warning --- crates/debug/src/transform/expression.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/debug/src/transform/expression.rs b/crates/debug/src/transform/expression.rs index 0a286aa616..a9460f9c2d 100644 --- a/crates/debug/src/transform/expression.rs +++ b/crates/debug/src/transform/expression.rs @@ -468,7 +468,7 @@ where let _ = code_chunk; // suppresses warning for final flush } }; - }; + } // Find all landing pads by scanning bytes, do not care about // false location at this moment. // Looks hacky but it is fast; does not need to be really exact.