remove ambiguous enter/exit template method

This commit is contained in:
Francisco Paisana 2020-04-27 13:31:28 +01:00 committed by Francisco Paisana
parent 3da8464a21
commit 1c74c5675e
1 changed files with 0 additions and 10 deletions

View File

@ -71,16 +71,6 @@ public:
protected:
// enter/exit
template <typename State>
void enter(State& s)
{
log_h->info("%s::enter called\n", srslte::get_type_name(s).c_str());
}
template <typename State>
void exit(State& s)
{
log_h->info("%s::exit called\n", srslte::get_type_name(s).c_str());
}
void enter(idle_st& s);
void enter(state1& s);