Changeset 277 in dev for trunk/abdev/BasicCompiler_Common


Ignore:
Timestamp:
Aug 12, 2007, 1:49:58 AM (17 years ago)
Author:
dai_9181
Message:

DllProc::pNextDataを排除した

Location:
trunk/abdev/BasicCompiler_Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Subroutine.cpp

    r272 r277  
    403403    }
    404404}
    405 void Delete_di(DllProc *pDllProc){
    406     if(pDllProc->pNextData) Delete_di(pDllProc->pNextData);
    407 
    408     delete pDllProc;
    409 }
    410405
    411406bool IsNeedProcCompile(){
  • trunk/abdev/BasicCompiler_Common/include/Procedure.h

    r276 r277  
    427427
    428428public:
    429     // ハッシュリスト用
    430     DllProc *pNextData;
    431 
    432429    DllProc( const NamespaceScopes &namespaceScopes, const string &name, Kind kind, bool isCdecl, const string &dllFileName, const string &alias )
    433430        : Procedure( namespaceScopes, name, kind, isCdecl )
     
    435432        , alias( alias )
    436433        , lookupAddress( 0 )
    437         , pNextData( NULL )
    438434    {
    439435    }
Note: See TracChangeset for help on using the changeset viewer.