mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Fix various warnings
-Wunused-parameter -Wreorder -Wsign-compare -Wunused-private-field
This commit is contained in:
committed by
Mohammad Al-Turany
parent
811e716731
commit
72f5cdef58
@@ -38,7 +38,7 @@ TEST(StateMachine, RegularFSM)
|
||||
ASSERT_NO_THROW(fsm.ChangeState(T::Automatic));
|
||||
|
||||
int cnt{0};
|
||||
fsm.SubscribeToStateQueued("test", [&](S newState, S lastState){
|
||||
fsm.SubscribeToStateQueued("test", [&](S /*newState*/, S /*lastState*/){
|
||||
++cnt;
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user