commit 2025-09-16 20:38 edit a bit ZCppMain/ZtCObjList.H

This commit is contained in:
2025-09-16 20:36:28 +09:00
parent c676b9d4f2
commit fb77b5ef89

View File

@ -703,7 +703,7 @@ namespace ZNsMain
ZCLink* VP_RhsCutTail =
rhs.mp_NoUseHead->GetNextPrevPtr(AI_FetchSize-1);
rhs.mp_NoUseHead->GetNextPtr( AI_FetchSize-1 ) ;
ZCLink* VP_RhsNewHead = VP_RhsCutTail->GetNextPtr( );
if(ml_UseSize<1)
@ -942,8 +942,8 @@ namespace ZNsMain
TypeSize VL_LoopIndex=0 ;
ZCLink* VP_TmpLink =this;
while(VL_LoopIndex++<AL_Distance)
VP_TmpLink=VP_TmpLink->mp_NextLink;
while(VL_LoopIndex++ < AL_Distance)
VP_TmpLink = VP_TmpLink->mp_NextLink ;
return VP_TmpLink;
}/*
@ -954,8 +954,8 @@ namespace ZNsMain
TypeSize VL_LoopIndex=0 ;
ZCLink* VP_TmpLink =this;
while(VL_LoopIndex++<AL_Distance)
VP_TmpLink=VP_TmpLink->mp_PrevtLink;
while(VL_LoopIndex++ < AL_Distance)
VP_TmpLink = VP_TmpLink->mp_PrevtLink ;
return VP_TmpLink;
}/*
@ -967,8 +967,8 @@ namespace ZNsMain
TypeSize VL_LoopIndex=0 ;
ZCLink* VP_TmpLink =const_cast<ZCLink*>(this);
while(VL_LoopIndex++<AL_Distance)
VP_TmpLink=VP_TmpLink->mp_NextLink;
while(VL_LoopIndex++ < AL_Distance)
VP_TmpLink = VP_TmpLink->mp_NextLink ;
return VP_TmpLink;
}/*
@ -979,8 +979,8 @@ namespace ZNsMain
TypeSize VL_LoopIndex=0 ;
ZCLink* VP_TmpLink = const_cast<ZCLink*>(this) ;
while(VL_LoopIndex++<AL_Distance)
VP_TmpLink=VP_TmpLink->mp_PrevtLink;
while(VL_LoopIndex++ < AL_Distance)
VP_TmpLink = VP_TmpLink->mp_PrevtLink ;
return VP_TmpLink;
}/*