Explicitly mark util::function as non-copiable with (function &) arguments
This commit is contained in:
parent
5c582fb0cc
commit
bb971ff412
1 changed files with 2 additions and 0 deletions
|
|
@ -39,7 +39,9 @@ namespace psemek::util
|
|||
function (function &&) noexcept;
|
||||
function & operator = (function &&) noexcept;
|
||||
|
||||
function (function &) = delete;
|
||||
function (function const &) = delete;
|
||||
function & operator = (function &) = delete;
|
||||
function & operator = (function const &) = delete;
|
||||
|
||||
~function();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue