From 4829149cf7cfa79e61e20aa5e72f9a4568699a06 Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Fri, 12 Apr 2019 23:36:38 +0900 Subject: [PATCH] Remove #[inline] because Tag::unit is not public to other crates. --- src/tag.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tag.rs b/src/tag.rs index 0c568cc..ce2fde0 100644 --- a/src/tag.rs +++ b/src/tag.rs @@ -93,7 +93,6 @@ impl Tag { get_tag_info(*self).and_then(|ti| (&ti.default).into()) } - #[inline] pub(crate) fn unit(self) -> Option<&'static [UnitPiece]> { get_tag_info(self).and_then(|ti| ti.unit) }