Skip to content

Commit aea4fd7

Browse files
authored
Merge pull request #1798 from evoskuil/master
Style.
2 parents cf875b3 + 18b60aa commit aea4fd7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

include/bitcoin/system/chain/json/macros.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,27 +45,27 @@ struct wrapped
4545
template<class Type>
4646
inline auto native(const Type& value) NOEXCEPT
4747
{
48-
return wrapped<native_tag, Type>{value};
48+
return wrapped<native_tag, Type>{ value };
4949
}
5050
template<class Type>
5151
inline auto bitcoind(const Type& value) NOEXCEPT
5252
{
53-
return wrapped<bitcoind_tag, Type>{value};
53+
return wrapped<bitcoind_tag, Type>{ value };
5454
}
5555
template<class Type>
5656
inline auto bitcoind_hashed(const Type& value) NOEXCEPT
5757
{
58-
return wrapped<bitcoind_hashed_tag, Type>{value};
58+
return wrapped<bitcoind_hashed_tag, Type>{ value };
5959
}
6060
template<class Type>
6161
inline auto bitcoind_verbose(const Type& value) NOEXCEPT
6262
{
63-
return wrapped<bitcoind_verbose_tag, Type>{value};
63+
return wrapped<bitcoind_verbose_tag, Type>{ value };
6464
}
6565
template<class Type>
6666
inline auto bitcoind_embedded(const Type& value) NOEXCEPT
6767
{
68-
return wrapped<bitcoind_embedded_tag, Type>{value};
68+
return wrapped<bitcoind_embedded_tag, Type>{ value };
6969
}
7070

7171
/// json aliases

0 commit comments

Comments
 (0)