Skip to content

Commit

Permalink
* fixing appveyor builds
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-gresyk committed Jul 22, 2019
1 parent 9ea1bce commit 067c9b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,7 @@ Check [Wiki](https://github.com/andrew-gresyk/HFSM2/wiki/Tutorial) for basic usa
- [Phil Nash](https://github.com/philsquared)
- [Romain Cheminade](https://github.com/romaincheminade)
- [Tristan Brindle](https://github.com/tcbrindle)

- [C++::London](https://www.meetup.com/CppLondon/) meetup
- programming community at [Splash Damage](http://www.splashdamage.com/)

2 changes: 1 addition & 1 deletion include/hfsm2/detail/plan.inl
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ PlanT<TArgs>::append(const Transition transition,
_bounds.last = index;
}

return index;
return true;
}

//------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions include/hfsm2/machine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2653,7 +2653,7 @@ PlanT<TArgs>::append(const Transition transition,
_bounds.last = index;
}

return index;
return true;
}

//------------------------------------------------------------------------------
Expand Down Expand Up @@ -7407,7 +7407,7 @@ C_<TN, TA, TG, TH, TS...>::deepReportChange(Control& control) {

default:
HFSM_BREAK();
return TA::UP{};
return {};
}
}

Expand Down

0 comments on commit 067c9b4

Please sign in to comment.