Changeset 304 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Aug 26, 2007, 2:54:38 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/MakeExe.cpp
r299 r304 119 119 120 120 ChangeCommandToCode(basbuf); 121 compiler.GetObjectModule().GetSources()[0]._ResetLength(); 121 122 122 123 //重複エラー情報管理のメモリを解放 -
trunk/abdev/BasicCompiler_Common/hash.cpp
r265 r304 63 63 bool isStatic = false; 64 64 const CClass *pobj_c = NULL; 65 if(lstrcmpi(ObjName,"Super")==0){ 65 if(lstrcmpi(ObjName,"Super")==0) 66 { 66 67 //クラスメンバ関数内から基底クラスの呼び出し 67 pobj_c= compiler.pCompilingClass;68 pobj_c=&compiler.pCompilingClass->GetSuperClass(); 68 69 } 69 else{ 70 else 71 { 70 72 //"->"によってオブジェクトを指定する通常のメンバ関数呼び出し 71 73 Type type; … … 90 92 pobj_c->GetMethods().Enum( NestMember, subs ); 91 93 } 94 92 95 return; 93 96 } -
trunk/abdev/BasicCompiler_Common/include/Source.h
r282 r304 222 222 return length-2; 223 223 } 224 void _ResetLength() 225 { 226 length = lstrlen( buffer ); 227 } 224 228 225 229 const IncludedFilesRelation &GetIncludedFilesRelation() const -
trunk/abdev/BasicCompiler_Common/include/option.h
r302 r304 14 14 // バージョン付加文字列 15 15 #ifdef _AMD64_ 16 #define VER_INFO "(x64) (rev. 299)"16 #define VER_INFO "(x64) (rev.306)" 17 17 #else 18 #define VER_INFO "(rev. 299)"18 #define VER_INFO "(rev.306)" 19 19 #endif 20 20
Note:
See TracChangeset
for help on using the changeset viewer.