parallel/stack: add move operator stubs

This commit is contained in:
Danny Robson 2019-05-23 16:42:38 +10:00
parent e033cb2e4f
commit ef56c29b22

View File

@ -28,6 +28,12 @@ namespace cruft::parallel {
template <typename ValueT>
class stack {
public:
stack (stack const &) = delete;
stack& operator=(stack const &) = delete;
stack (stack &&);
stack& operator= (stack &&);
stack (std::size_t capacity)
: m_cursor (0)
, m_store (capacity)