예제 #1
0
파일: e7-1.cpp 프로젝트: hizcode/ppp
void clean_up_mess()
{ 
    ts.ignore(print);
}
예제 #2
0
파일: calc2.cpp 프로젝트: kaustubhb/PPPCpp
void clean_up_mess()
{
  ts.ignore(PRINT);
}
void clean_up_mess() // Ignores all characters before ';' if an exception was thrown
{
	ts.ignore(print);
}
예제 #4
0
파일: 8-1.cpp 프로젝트: JayDz/PPP-answers
void clean_up_mess(Token_stream& ts)
{
	ts.ignore(print);
}