Changeset 406 in dev for trunk/abdev/BasicCompiler64
- Timestamp:
 - Mar 2, 2008, 4:36:33 AM (18 years ago)
 - Location:
 - trunk/abdev/BasicCompiler64
 - Files:
 - 
      
- 2 edited
 
- 
          
  BasicCompiler.vcproj (modified) (1 diff)
 - 
          
  MakePeHdr.cpp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/abdev/BasicCompiler64/BasicCompiler.vcproj
r404 r406 1312 1312 > 1313 1313 <FileConfiguration 1314 Name="Debug|Win32" 1315 > 1316 <Tool 1317 Name="VCCLCompilerTool" 1318 UsePrecompiledHeader="0" 1319 /> 1320 </FileConfiguration> 1321 <FileConfiguration 1314 1322 Name="Release|Win32" 1315 1323 >  - 
      
trunk/abdev/BasicCompiler64/MakePeHdr.cpp
r358 r406 140 140 141 141 //列挙体に関する情報を収集 142 CEnumParent::InitEnum();142 compiler.enumInfoCollection.InitEnum(); 143 143 144 144 //列挙体からクラスコードを生成 145 145 char *temp; 146 temp =CEnumParent::GenerateSourceCode();146 temp = compiler.enumInfoCollection.GenerateSourceCode(); 147 147 AddSourceCode(temp); 148 148 HeapDefaultFree(temp); … … 1655 1655 delete pobj_Reloc; 1656 1656 1657 //列挙体に関する情報の破棄1658 CEnumParent::DestroyEnum();1659 1660 1657 //クラスに関するメモリを解放 1661 1658 compiler.GetObjectModule().meta.GetClasses().Clear();  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  