From 53d84e2949f7307189867d5e11d6d6762f945f88 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Mon, 4 Jul 2022 13:36:01 +0200 Subject: openpgp: Drop unnecessary trailing semicolon. --- openpgp/src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpgp/src/macros.rs b/openpgp/src/macros.rs index bdcd591a..e7544083 100644 --- a/openpgp/src/macros.rs +++ b/openpgp/src/macros.rs @@ -83,7 +83,7 @@ macro_rules! time_it { // using break 'label) still works. struct Timer { start: SystemTime, - }; + } impl Drop for Timer { fn drop(&mut self) { let elapsed = self.start.elapsed(); -- cgit v1.2.3