mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
fix: -Winfinite-recursion
This commit is contained in:
parent
bce380d871
commit
727a709aff
|
@ -536,12 +536,12 @@ class Device
|
|||
|
||||
/// @brief Returns name of the given state as a string
|
||||
/// @param state state
|
||||
static std::string GetStateName(const State state) { return GetStateName(state); }
|
||||
static std::string GetStateName(const State state) { return fair::mq::GetStateName(state); }
|
||||
/// @brief Returns name of the given transition as a string
|
||||
/// @param transition transition
|
||||
static std::string GetTransitionName(const Transition transition)
|
||||
{
|
||||
return GetTransitionName(transition);
|
||||
return fair::mq::GetTransitionName(transition);
|
||||
}
|
||||
|
||||
static constexpr const char* DefaultId = "";
|
||||
|
|
Loading…
Reference in New Issue
Block a user