Skip to content

Commit baa341c

Browse files
authored
chore: remove some inlines (#1028)
1 parent 2ce9079 commit baa341c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

crates/sol-type-parser/src/root.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ impl<'a> RootType<'a> {
137137
}
138138

139139
/// Returns `Ok(())` if the type is a basic Solidity type.
140-
#[inline]
141140
pub fn try_basic_solidity(self) -> Result<()> {
142141
match self.0 {
143142
"address" | "bool" | "string" | "bytes" | "uint" | "int" | "function" => Ok(()),

crates/sol-type-parser/src/tuple.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ impl<'a> TupleSpecifier<'a> {
9191
}
9292

9393
/// Returns true if the type is a basic Solidity type.
94-
#[inline]
9594
pub fn try_basic_solidity(&self) -> Result<()> {
9695
self.types.iter().try_for_each(TypeSpecifier::try_basic_solidity)
9796
}

0 commit comments

Comments
 (0)