commit 2025-10-14 20:48 __for_i => __for_it : ZCppMain/ZMainHead.H

This commit is contained in:
2025-10-14 20:48:59 +09:00
parent a0d9d31a21
commit b8d5ddb47f
3 changed files with 14 additions and 14 deletions

View File

@ -375,13 +375,13 @@ namespace ZNsMain
//iteratorEx1 VO_IterEx1 = VO_ListOfStr11.end();
iteratorN1 VO_IterN1(VO_Iter1);
__for_ic (CStringList1, VO_ListOfStr11, VO_NowIter)
__for_itc (CStringList1, VO_ListOfStr11, VO_NowIter)
{
cout<<"(by for_ic ) "<<VO_NowIter.GetPos()<<" : "<<*VO_NowIter<<endl;
cout<<"(by for_itc ) "<<VO_NowIter.GetPos()<<" : "<<*VO_NowIter<<endl;
}
__for_i_r(CStringList1, VO_ListOfStr11, VO_NowIter)
__for_it_r(CStringList1, VO_ListOfStr11, VO_NowIter)
{
cout<<"(by for_i_r) "<<VO_NowIter.GetPos()<<" : "<<*VO_NowIter<<endl;
cout<<"(by for_it_r) "<<VO_NowIter.GetPos()<<" : "<<*VO_NowIter<<endl;
}