This commit is contained in:
gabime 2014-05-11 03:07:21 +03:00
parent ff0d313936
commit 4207c40786
3 changed files with 33 additions and 33 deletions

View File

@ -23,10 +23,10 @@ public:
stack_buf& operator=(const stack_buf& other) = delete; stack_buf& operator=(const stack_buf& other) = delete;
stack_buf(const stack_buf& other):stack_buf(other, delegate_copy_move{}) stack_buf(const stack_buf& other):stack_buf(other, delegate_copy_move {})
{} {}
stack_buf(stack_buf&& other):stack_buf(other, delegate_copy_move{}) stack_buf(stack_buf&& other):stack_buf(other, delegate_copy_move {})
{ {
other.clear(); other.clear();
} }