Skip to content
Snippets Groups Projects
Commit a44d85ee authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove move constructor

parent 6279c518
No related branches found
No related tags found
1 merge request!84Add SubArray class
......@@ -86,9 +86,7 @@ class SubItemValuePerItem
}
SubView(const SubView&) = delete;
PUGS_INLINE
SubView(SubView&&) noexcept = default;
SubView(SubView&&) noexcept = delete;
PUGS_INLINE
SubView(const Array<DataType>& values, size_t begin, size_t end) noexcept(NO_ASSERT)
......@@ -97,6 +95,8 @@ class SubItemValuePerItem
Assert(begin <= end);
Assert(end <= values.size());
}
~SubView() = default;
};
friend PUGS_INLINE SubItemValuePerItem<std::remove_const_t<DataType>, ItemOfItem, ConnectivityPtr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment