From 56fcb07febac436d6bdf80b99def88d81e9dd890 Mon Sep 17 00:00:00 2001 From: Joey Beauvais-Feisthauer Date: Sun, 3 Jul 2022 11:14:37 -0400 Subject: [PATCH] Remove `#[repr(transparent)]` --- ext/src/utils.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/src/utils.rs b/ext/src/utils.rs index 928d39dea..9bb8240fc 100644 --- a/ext/src/utils.rs +++ b/ext/src/utils.rs @@ -615,7 +615,6 @@ mod logging { pub fn end(self, _msg: std::fmt::Arguments) {} } - #[repr(transparent)] pub struct LogWriter(T); impl Write for LogWriter {