replace piForeach* to for(:)
another c++11 try ...
This commit is contained in:
@@ -218,7 +218,7 @@ void writeClassStreamMembersOut(PIFile & f, const PICodeParser::Entity * e, int
|
||||
f << "));\n";
|
||||
}
|
||||
if (is_union)
|
||||
piBreak;
|
||||
break;
|
||||
}
|
||||
if (is_union) return;
|
||||
piForeachC (PICodeParser::Entity * ce, e->children) {
|
||||
@@ -261,7 +261,7 @@ void writeClassStreamMembersIn(PIFile & f, const PICodeParser::Entity * e, int &
|
||||
f << "\t\t\tbreak;\n";
|
||||
}
|
||||
if (is_union)
|
||||
piBreak;
|
||||
break;
|
||||
}
|
||||
if (is_union) return;
|
||||
piForeachC (PICodeParser::Entity * ce, e->children) {
|
||||
|
||||
Reference in New Issue
Block a user