File tree 1 file changed +3
-3
lines changed
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 {
734
734
return this ->states ;
735
735
};
736
736
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;
739
739
for (const auto &s : this ->states ) {
740
740
result.insert (s.second ->getReference ());
741
741
}
@@ -1068,7 +1068,7 @@ class FiniteStateMachine : public Abstract::FiniteStateMachine {
1068
1068
}
1069
1069
1070
1070
[[nodiscard]] bool hasDirectedCycle () const {
1071
- FSM::Abstract::DetectCycle DC (*this );
1071
+ :: FSM::Abstract::DetectCycle DC (*this );
1072
1072
return DC.checkForCycles (nullptr );
1073
1073
}
1074
1074
You can’t perform that action at this time.
0 commit comments