edit ZtCObjList.H a bit

This commit is contained in:
2021-02-26 17:28:33 +09:00
parent 4c89ca0c06
commit 8af9880d23

View File

@ -1494,7 +1494,7 @@ namespace ZNsMain
__for0(int, i, ml_Size) __for0(int, i, ml_Size)
{ {
std::CTypeData_T<TFunctor>::GetObjRef(AO_Functor)(VP_LoopLink->mo_Type); ZtCTypeData<TFunctor>::GetObjRef(AO_Functor)(VP_LoopLink->mo_Type);
/* 위 코드로 인해서, AO_Functor 이 함수일 때 뿐이 아니라, operator() /* 위 코드로 인해서, AO_Functor 이 함수일 때 뿐이 아니라, operator()
연산자를 가진 object 포인터일 때도 사용할 수 있게 되었다. */ 연산자를 가진 object 포인터일 때도 사용할 수 있게 되었다. */
@ -1530,7 +1530,7 @@ namespace ZNsMain
__for0(int, i, ml_Size) __for0(int, i, ml_Size)
{ {
std::CTypeData_T<TFunctor>:: ZtCTypeData<TFunctor>::
GetObjRef(AO_Functor)(VP_LoopLink->mo_Type, AO_TypeHelp); GetObjRef(AO_Functor)(VP_LoopLink->mo_Type, AO_TypeHelp);
/* 위 코드로 인해서, AO_Functor 이 함수일 때 뿐이 아니라, operator() /* 위 코드로 인해서, AO_Functor 이 함수일 때 뿐이 아니라, operator()
@ -1553,7 +1553,7 @@ namespace ZNsMain
__for0(int, i, ml_Size) __for0(int, i, ml_Size)
{ {
std::CTypeData_T<TFunctor>:: ZtCTypeData<TFunctor>::
GetObjRef(AO_Functor)(VP_LoopLink->mo_Type, AR_TypeHelp); GetObjRef(AO_Functor)(VP_LoopLink->mo_Type, AR_TypeHelp);
VP_LoopLink = VP_LoopLink->mp_NextLink ; VP_LoopLink = VP_LoopLink->mp_NextLink ;