Skip to content

Commit

Permalink
Restore View's move constructor
Browse files Browse the repository at this point in the history
This shows clearly in bench-at. Probably more to be done along these lines.
  • Loading branch information
lloda committed Nov 17, 2023
1 parent 39b12c5 commit 8c193bb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ra/big.hh
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ struct View
}
}
constexpr View(std::initializer_list<dim_t> s, T * cp_): View(start(s), cp_) {}
constexpr View(View && x) = default;
constexpr View(View const & x) = default;

// the non-template is required, and to avoid ambiguity the template must then be constrained [ra38] [ra34]
Expand Down

0 comments on commit 8c193bb

Please sign in to comment.