Merge branch 'master' of ssh://server.strongds.hu:222/mrtoth/Function
This commit is contained in:
commit
b2ca0431ee
@ -32,7 +32,7 @@ private:
|
|||||||
virtual ~callable() override {}
|
virtual ~callable() override {}
|
||||||
};
|
};
|
||||||
|
|
||||||
std::unique_ptr _fun;
|
std::unique_ptr<callable_base> _fun;
|
||||||
/* kérdés, hogy ezt lehet-e szebben, vagy ez így a state-of-the-art megoldás?
|
/* kérdés, hogy ezt lehet-e szebben, vagy ez így a state-of-the-art megoldás?
|
||||||
* lent majd látod, de úgy van megoldva, hogy overloadolva van az operator=
|
* lent majd látod, de úgy van megoldva, hogy overloadolva van az operator=
|
||||||
* std::nullptr_t-re. próbáltam varázsolni ilyen std::is_null_pointer-rel,
|
* std::nullptr_t-re. próbáltam varázsolni ilyen std::is_null_pointer-rel,
|
||||||
@ -63,4 +63,4 @@ public:
|
|||||||
|
|
||||||
operator bool() const
|
operator bool() const
|
||||||
{ return static_cast<bool>(_fun); }
|
{ return static_cast<bool>(_fun); }
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user