added missing return statement
This commit is contained in:
parent
1bc9c12f81
commit
81b4313d10
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user