summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-07-04 13:36:01 +0200
committerJustus Winter <justus@sequoia-pgp.org>2022-07-04 13:36:26 +0200
commit53d84e2949f7307189867d5e11d6d6762f945f88 (patch)
treed7924d9e186df4c0c728bc9d57c8020ea1adcc5f
parent263ede40a91340ce6be2283a1b505023ac5f1092 (diff)
openpgp: Drop unnecessary trailing semicolon.
-rw-r--r--openpgp/src/macros.rs2
1 files changed, 1 insertions, 1 deletions
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();