erikzenker / hsm

Finite state machine library based on the boost hana meta programming library. It follows the principles of the boost msm and boost sml libraries, but tries to reduce own complex meta programming code to a minimum.
MIT License
187 stars 18 forks source link

[Reproducer] internal transition table without external transition table #143

Closed erikzenker closed 1 year ago

erikzenker commented 3 years ago

Problem: A internal transition table is not recognized when the particular state has no external transition table.

Workaround: Add an external transition table with a dummy transition (Dummy + dummy = Dummy)

erikzenker commented 1 year ago

Fixed