mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
Add missing return statement
This commit is contained in:
parent
af70d03ab0
commit
7ee479084c
|
@ -105,6 +105,7 @@ bool FairMQStateMachine::ChangeState(int event)
|
||||||
{
|
{
|
||||||
LOG(ERROR) << boost::diagnostic_information(e);
|
LOG(ERROR) << boost::diagnostic_information(e);
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FairMQStateMachine::ChangeState(std::string event)
|
bool FairMQStateMachine::ChangeState(std::string event)
|
||||||
|
@ -187,6 +188,7 @@ bool FairMQStateMachine::WaitForEndOfStateForMs(int event, int durationInMs)
|
||||||
{
|
{
|
||||||
LOG(ERROR) << boost::diagnostic_information(e);
|
LOG(ERROR) << boost::diagnostic_information(e);
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FairMQStateMachine::WaitForEndOfStateForMs(std::string event, int durationInMs)
|
bool FairMQStateMachine::WaitForEndOfStateForMs(std::string event, int durationInMs)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user