From c2f681f005a036568dcfe2beb171b9ab635fa486 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Sun, 4 Aug 2019 10:13:29 -0400 Subject: [PATCH] Add semicolon Co-Authored-By: Ralf Jung --- src/helpers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.rs b/src/helpers.rs index c543240442ec..569c1dbfb07e 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -87,7 +87,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx // any additional checks - it's okay if the pointer is invalid, // since we wouldn't actually be writing to it. if len == 0 { - return Ok(()) + return Ok(()); } let this = self.eval_context_mut();