コード例 #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);
}