File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -734,8 +734,8 @@ class FiniteStateMachine : public Abstract::FiniteStateMachine {
734734 return this ->states ;
735735 };
736736
737- [[nodiscard]] FSM::Abstract::SetOfStateRefs getStateRefs () const override {
738- FSM::Abstract::SetOfStateRefs result;
737+ [[nodiscard]] :: FSM::Abstract::SetOfStateRefs getStateRefs () const override {
738+ :: FSM::Abstract::SetOfStateRefs result;
739739 for (const auto &s : this ->states ) {
740740 result.insert (s.second ->getReference ());
741741 }
@@ -1068,7 +1068,7 @@ class FiniteStateMachine : public Abstract::FiniteStateMachine {
10681068 }
10691069
10701070 [[nodiscard]] bool hasDirectedCycle () const {
1071- FSM::Abstract::DetectCycle DC (*this );
1071+ :: FSM::Abstract::DetectCycle DC (*this );
10721072 return DC.checkForCycles (nullptr );
10731073 }
10741074
You can’t perform that action at this time.
0 commit comments