Skip to content
Snippets Groups Projects
Commit 0b2ab03f authored by Paul Gessinger's avatar Paul Gessinger Committed by Paul Gessinger
Browse files

::is() can be called with only a template argument

parent cc40df73
No related branches found
No related tags found
1 merge request!688Finite State Machine helper class
...@@ -38,7 +38,6 @@ class FiniteStateMachine { ...@@ -38,7 +38,6 @@ class FiniteStateMachine {
const StateVariant& getState() const noexcept { return m_state; } const StateVariant& getState() const noexcept { return m_state; }
StateVariant& getState() noexcept { return m_state; }
private: private:
template <typename T, typename S, typename... Args> template <typename T, typename S, typename... Args>
using on_exit_t = decltype( using on_exit_t = decltype(
...@@ -74,13 +73,18 @@ class FiniteStateMachine { ...@@ -74,13 +73,18 @@ class FiniteStateMachine {
template <typename S> template <typename S>
bool is(const S& /*state*/) const noexcept { bool is(const S& /*state*/) const noexcept {
return is<S>();
}
template <typename S>
bool is() const noexcept {
if (std::get_if<S>(&m_state)) { if (std::get_if<S>(&m_state)) {
return true; return true;
} }
return false; return false;
} }
bool terminated() const noexcept { return is(Terminated{}); } bool terminated() const noexcept { return is<Terminated>(); }
private: private:
template <typename T, typename S, typename E, typename... Args> template <typename T, typename S, typename E, typename... Args>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment