Changeset 31 in dev for BasicCompiler_Common/Class.cpp
- Timestamp:
- Jan 13, 2007, 4:26:50 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Class.cpp
r29 r31 698 698 699 699 //標準コンストラクタ(引数なし) 700 if(psi->ParmNum== 1) fConstructor=1;700 if(psi->ParmNum==0) fConstructor=1; 701 701 702 702 //コピーコンストラクタ 703 if(psi->ParmNum== 2){703 if(psi->ParmNum==1){ 704 704 if(psi->pParmInfo[1].type==DEF_OBJECT&& 705 705 psi->pParmInfo[1].u.pobj_c==pobj_c) fConstructor=2;
Note:
See TracChangeset
for help on using the changeset viewer.