Skip to content

Commit fdf6dba

Browse files
committed
Explicitly specify uint32_t when calling AttemptTransition
1 parent 69c620a commit fdf6dba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Code/max/Containers/StateMachine/StateMachineTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace StateMachine {
4343

4444
auto state_machine = max::Containers::StateMachine::StateMachine{std::make_tuple(std::move(node_0), std::move(node_1))};
4545

46-
state_machine.AttemptTransition(1);
46+
state_machine.AttemptTransition(uint32_t{1});
4747

4848
CurrentTest.MAX_TESTING_ASSERT( state_machine.current_node_index_ == 1 );
4949
CurrentTest.MAX_TESTING_ASSERT( range_callback_called );

0 commit comments

Comments
 (0)