Lifetime: Allow checking for empty lifetimes
parent
55d7d5bf17
commit
58700afc73
|
|
@ -25,6 +25,10 @@ public:
|
||||||
rhs.fnOnDeath = std::function<void(void)>();
|
rhs.fnOnDeath = std::function<void(void)>();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Allow checking for empty Lifetimes
|
||||||
|
bool empty() const { return fnOnDeath.operator bool(); }
|
||||||
|
operator bool() const { return empty(); }
|
||||||
private:
|
private:
|
||||||
std::function<void(void)> fnOnDeath;
|
std::function<void(void)> fnOnDeath;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue