Skip to content

Commit 47980d9

Browse files
committed
Remove whitespace on blank lines.
1 parent 373175e commit 47980d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/values/traits.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ macro_rules! impl_try_from_basic_value_enum {
130130
($value_name:ident) => (
131131
impl TryFrom<BasicValueEnum> for $value_name {
132132
type Error = &'static str;
133-
133+
134134
fn try_from(value: BasicValueEnum) -> Result<Self, Self::Error> {
135135
match value {
136136
BasicValueEnum::$value_name(value) => Ok(value),
@@ -152,7 +152,7 @@ macro_rules! impl_try_from_basic_type_enum {
152152
($type_name:ident) => (
153153
impl TryFrom<BasicTypeEnum> for $type_name {
154154
type Error = &'static str;
155-
155+
156156
fn try_from(ty: BasicTypeEnum) -> Result<Self, Self::Error> {
157157
match ty {
158158
BasicTypeEnum::$type_name(ty) => Ok(ty),

0 commit comments

Comments
 (0)