Changeset 406 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Mar 2, 2008, 4:36:33 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/BasicCompiler.vcproj
r404 r406 1349 1349 > 1350 1350 <FileConfiguration 1351 Name="Debug|Win32" 1352 > 1353 <Tool 1354 Name="VCCLCompilerTool" 1355 UsePrecompiledHeader="0" 1356 /> 1357 </FileConfiguration> 1358 <FileConfiguration 1351 1359 Name="Release|Win32" 1352 1360 > -
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r358 r406 151 151 152 152 //列挙体に関する情報を収集 153 CEnumParent::InitEnum();153 compiler.enumInfoCollection.InitEnum(); 154 154 155 155 //列挙体からクラスコードを生成 156 156 char *temp; 157 temp= CEnumParent::GenerateSourceCode();157 temp=compiler.enumInfoCollection.GenerateSourceCode(); 158 158 AddSourceCode(temp); 159 159 HeapDefaultFree(temp); … … 1659 1659 delete pobj_Reloc; 1660 1660 1661 //列挙体に関する情報の破棄1662 CEnumParent::DestroyEnum();1663 1664 1661 //クラスに関するメモリを解放 1665 1662 compiler.GetObjectModule().meta.GetClasses().Clear();
Note:
See TracChangeset
for help on using the changeset viewer.