Changeset 210 in dev
- Timestamp:
- Jul 13, 2007, 4:55:22 PM (17 years ago)
- Location:
- trunk/abdev
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r209 r210 206 206 compiler.GetMeta().GetDllProcs().Iterator_Init(); 207 207 208 /* 208 209 209 if( !compiler.GetMeta().Write( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) ) 210 210 { … … 217 217 } 218 218 compiler.GetMeta() = (*pTempMeta); 219 */ 219 220 220 221 //コードと行番号の関係 221 222 extern LINEINFO *pLineInfo; -
trunk/abdev/BasicCompiler_Common/include/Procedure.h
r209 r210 418 418 DllProc *pNextData; 419 419 420 DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias ): 421 Procedure( namespaceScopes, name, kind, isCdecl ), 422 dllFileName( dllFileName ), 423 alias( alias ), 424 lookupAddress( 0 ), 425 pNextData( NULL ) 420 DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias ) 421 : Procedure( namespaceScopes, name, kind, isCdecl ) 422 , dllFileName( dllFileName ) 423 , alias( alias ) 424 , lookupAddress( 0 ) 425 , pNextData( NULL ) 426 { 427 } 428 DllProc() 426 429 { 427 430 } -
trunk/abdev/BasicCompiler_Common/include/Symbol.h
r208 r210 22 22 template<class Archive> void load(Archive& ar, const unsigned int version) 23 23 { 24 trace_for_serialize( "serializing(load) - Symbol" );24 //trace_for_serialize( "serializing(load) - Symbol" ); 25 25 26 26 ar & BOOST_SERIALIZATION_NVP( namespaceScopes ); … … 32 32 template<class Archive> void save(Archive& ar, const unsigned int version) const 33 33 { 34 trace_for_serialize( "serializing(save) - Symbol" );34 //trace_for_serialize( "serializing(save) - Symbol" ); 35 35 36 36 ar & BOOST_SERIALIZATION_NVP( namespaceScopes ); -
trunk/abdev/BasicCompiler_Common/include/option.h
r206 r210 32 32 33 33 // XMLシリアライズに関するログを生成する 34 #define USE_TRACE_FOR_SERIALIZE34 //#define USE_TRACE_FOR_SERIALIZE 35 35 36 36 // ソースコードステップに関するログを生成する
Note:
See TracChangeset
for help on using the changeset viewer.