commit 2025-10-14 17:32 edit a bit ZCppMain/ZtCArray.H

This commit is contained in:
2025-10-14 17:33:03 +09:00
parent a578e3b244
commit d66bdb4cea

View File

@ -771,11 +771,11 @@ namespace ZNsMain
void MovePrevIter(TypeData* & APR_CType ) const{--APR_CType ;}
void MovePrevIter(iterator & ARR_CIterator) const{--ARR_CIterator;}
void MovePrevIter(IterEasyID & AI_IterEasyID) const
{ MovePrevIter((TypeData*&)AI_IterEasyID); }
{ MovePrevIter((TypeData *&)AI_IterEasyID); }
void MovePrevIter(TypeDataC* & APR_CType ) const{--APR_CType ;}
void MovePrevIter(iteratorC & ARR_CIterator) const{--ARR_CIterator;}
void MovePrevIter(IterEasyIDc& AI_IterEasyID)
const{ MovePrevIter((TypeDataC*&)AI_IterEasyID); }
void MovePrevIter(IterEasyIDc& AI_IterEasyID) const
{ MovePrevIter((TypeDataC*&)AI_IterEasyID); }
TypeData& GetDataInIter(TypeData * AP_CType ) {return *AP_CType ;}