added missing return statement

This commit is contained in:
Kjistóf 2016-11-27 14:50:49 +01:00
parent 1bc9c12f81
commit 81b4313d10
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public:
}
Function& operator=(std::nullptr_t) // exploiting that decltype(nullptr) is std::nullptr_t
{ _is_null = true; }
{ _is_null = true; return *this; }
Ret operator()(Args... args) const
{