feat support type
Some checks failed
linux-arm-gcc / linux-gcc-armhf (push) Successful in 1m35s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (push) Successful in 1m38s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 1m31s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 1m53s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 1m53s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 2m12s
Some checks failed
linux-arm-gcc / linux-gcc-armhf (push) Successful in 1m35s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (push) Successful in 1m38s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 1m31s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 1m53s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 1m53s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 2m12s
This commit is contained in:
parent
a1ec48b1ea
commit
4fc8fe0f09
@ -456,6 +456,9 @@ private:
|
|||||||
|
|
||||||
namespace sled {
|
namespace sled {
|
||||||
template<typename T, typename State = int>
|
template<typename T, typename State = int>
|
||||||
using Fsm = fsmlite::Fsm<T, State>;
|
class Fsm : public fsmlite::Fsm<T, State> {
|
||||||
}
|
public:
|
||||||
|
Fsm(State init_state = State()) : fsmlite::Fsm<T, State>(init_state) {}
|
||||||
|
};
|
||||||
|
}// namespace sled
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user