commit 2025-08-24 00:20 add and test ZCppMainTest/ZtCLoadXml_000.cpp

This commit is contained in:
2025-08-24 00:21:09 +09:00
parent ea01f2d0bf
commit 0c436c267f
7 changed files with 251 additions and 193 deletions

View File

@ -852,14 +852,14 @@ namespace ZNsMain
ZtCObjAVL& operator=(const ZtCObjAVL& rhs)
{
if(this==&rhs) {return ;}
if(this==&rhs) {return *this;}
DeleteAll(); if(rhs.mp_HeadNode==0){ return; }
DeleteAll(); if(rhs.mp_HeadNode==0){ return *this;}
ZCNode* VP_Temp=rhs.mp_HeadNode;
ZCNode* VP_Tail=rhs.mp_HeadNode->mp_PrevNode;
do /**/
do //////
{
AddData(VP_Temp->mo_Type);