Changeset 354 in dev
- Timestamp:
- Oct 22, 2007, 1:29:05 AM (17 years ago)
- Location:
- trunk/abdev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Object.cpp
r349 r354 100 100 { 101 101 const CClass *pClass = &objClass; 102 int typeSize = pClass->GetSize();103 102 104 103 if( pClass->IsInterface() ) … … 106 105 pClass = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr(); 107 106 } 107 108 int typeSize = pClass->GetSize(); 108 109 109 110 if(pClass->IsAbstract()){ -
trunk/abdev/BasicCompiler64/Compile_Object.cpp
r349 r354 93 93 { 94 94 const CClass *pClass = &objClass; 95 int typeSize = pClass->GetSize();96 95 97 96 if( pClass->IsInterface() ) … … 99 98 pClass = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr(); 100 99 } 100 101 int typeSize = pClass->GetSize(); 101 102 102 103 if( pClass->IsAbstract() ){ -
trunk/abdev/BasicCompiler_Common/include/ver.h
r353 r354 6 6 // バージョン付加文字列 7 7 #ifdef _AMD64_ 8 #define VER_INFO "(x64) (rev.3 57)"8 #define VER_INFO "(x64) (rev.361)" 9 9 #else 10 #define VER_INFO "(rev.3 57)"10 #define VER_INFO "(rev.361)" 11 11 #endif
Note:
See TracChangeset
for help on using the changeset viewer.