Skip to content

Commit 49db96d

Browse files
committed
Fix formatting by removing spaces between function calls and parentheses in xstrides.hpp and xmanipulation.hpp
1 parent ff0605b commit 49db96d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

include/xtensor/core/xstrides.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ namespace xt
493493
{
494494
using difference_type = typename std::iterator_traits<It>::difference_type;
495495
auto size = static_cast<difference_type>(
496-
(std::min) (static_cast<typename S::size_type>(std::distance(first, last)), strides.size())
496+
(std::min)(static_cast<typename S::size_type>(std::distance(first, last)), strides.size())
497497
);
498498
return std::inner_product(last - size, last, strides.cend() - size, offset_type(0));
499499
}

include/xtensor/misc/xmanipulation.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ namespace xt
659659
template <std::size_t N, class E>
660660
inline auto atleast_Nd(E&& e)
661661
{
662-
xstrided_slice_vector sv((std::max) (e.dimension(), N), all());
662+
xstrided_slice_vector sv((std::max)(e.dimension(), N), all());
663663
if (e.dimension() < N)
664664
{
665665
std::size_t i = 0;

0 commit comments

Comments
 (0)