Make Action abstract base class

This commit is contained in:
Keith Winstein
2011-01-13 01:12:07 -05:00
parent fbf0567085
commit 57ecacd409
2 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -263,9 +263,9 @@ int vt_parser( struct stripstate *state )
assert( act );
if ( act->char_present ) {
printf( "%s(0x%02x=%lc) ", act->name.c_str(), act->ch, act->ch );
printf( "%s(0x%02x=%lc) ", act->name().c_str(), act->ch, act->ch );
} else {
printf( "[%s] ", act->name.c_str() );
printf( "[%s] ", act->name().c_str() );
}
delete act;