File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,17 +45,17 @@ void Atm_controller::action( int id ) {
4545bool Atm_controller::eval_one ( atm_connector& connector ) {
4646
4747 switch ( connector.relOp () ) {
48- case connector. REL_EQ :
48+ case atm_connector:: REL_EQ:
4949 return connector.pull () == connector.event ;
50- case connector. REL_NEQ :
50+ case atm_connector:: REL_NEQ:
5151 return connector.pull () != connector.event ;
52- case connector. REL_LT :
52+ case atm_connector:: REL_LT:
5353 return connector.pull () < connector.event ;
54- case connector. REL_GT :
54+ case atm_connector:: REL_GT:
5555 return connector.pull () > connector.event ;
56- case connector. REL_LTE :
56+ case atm_connector:: REL_LTE:
5757 return connector.pull () <= connector.event ;
58- case connector. REL_GTE :
58+ case atm_connector:: REL_GTE:
5959 return connector.pull () >= connector.event ;
6060 }
6161 return connector.pull ();
You can’t perform that action at this time.
0 commit comments