diff options
Diffstat (limited to 'src/ids.rs')
-rw-r--r-- | src/ids.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -41,7 +41,10 @@ macro_rules! identifer { } impl std::fmt::Display for $name { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt( + &self, + f: &mut std::fmt::Formatter<'_>, + ) -> std::fmt::Result { self.0.fmt(f) } } |