Skip to content

Commit

Permalink
fix xtensor constructor default layout
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Apr 19, 2017
1 parent 81efae2 commit 42e8f17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/xtensor/xtensor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ namespace xt

xtensor_container();
xtensor_container(nested_initializer_list_t<value_type, N> t);
explicit xtensor_container(const shape_type& shape, layout_type l = layout_type::row_major);
explicit xtensor_container(const shape_type& shape, const_reference value, layout_type l = layout_type::row_major);
explicit xtensor_container(const shape_type& shape, layout_type l = L);
explicit xtensor_container(const shape_type& shape, const_reference value, layout_type l = L);
explicit xtensor_container(const shape_type& shape, const strides_type& strides);
explicit xtensor_container(const shape_type& shape, const strides_type& strides, const_reference value);
explicit xtensor_container(container_type&& data, inner_shape_type&& shape, inner_strides_type&& strides);
Expand Down

0 comments on commit 42e8f17

Please sign in to comment.