mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix coding-style
This commit is contained in:
parent
df3023db30
commit
5ce2cb023c
196 changed files with 1180 additions and 1787 deletions
|
@ -25,14 +25,14 @@ namespace sprout {
|
|||
// realign_to
|
||||
//
|
||||
template<typename Result, typename Container, typename T>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::realign_to<Result, Container>::type realign_to(
|
||||
Container const& cont,
|
||||
T const& v
|
||||
)
|
||||
{
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::realign_to<Result, Container>::type
|
||||
realign_to(Container const& cont, T const& v) {
|
||||
return sprout::fixed::detail::realign_impl<typename sprout::fixed::result_of::realign_to<Result, Container>::type>(
|
||||
cont,
|
||||
sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::static_size>::make(),
|
||||
sprout::index_range<
|
||||
0,
|
||||
sprout::container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::static_size
|
||||
>::make(),
|
||||
sprout::size(cont),
|
||||
v
|
||||
);
|
||||
|
@ -42,13 +42,14 @@ namespace sprout {
|
|||
// realign_to
|
||||
//
|
||||
template<typename Result, typename Container>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::realign_to<Result, Container>::type realign_to(
|
||||
Container const& cont
|
||||
)
|
||||
{
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::realign_to<Result, Container>::type
|
||||
realign_to(Container const& cont) {
|
||||
return sprout::fixed::detail::realign_impl<typename sprout::fixed::result_of::realign_to<Result, Container>::type>(
|
||||
cont,
|
||||
sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::static_size>::make(),
|
||||
sprout::index_range<
|
||||
0,
|
||||
sprout::container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::static_size
|
||||
>::make(),
|
||||
sprout::size(cont)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue