parallel/stack: add move operator stubs
This commit is contained in:
parent
e033cb2e4f
commit
ef56c29b22
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user