Ignore:
Timestamp:
Mar 16, 2007, 11:07:14 PM (17 years ago)
Author:
dai_9181
Message:

Parameterクラスを適用。32bit側は動くようになったので、64bitのほうを調整する。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/PESchedule.cpp

    r44 r73  
    220220
    221221CSubAddrSchedule::CSubAddrSchedule(){
    222     ppsi=(SUBINFO **)HeapAlloc(hHeap,0,1);
     222    ppsi=(SubInfo **)HeapAlloc(hHeap,0,1);
    223223    pbCall=(BOOL *)HeapAlloc(hHeap,0,1);
    224224}
     
    228228}
    229229
    230 void CSubAddrSchedule::add(SUBINFO *psi,BOOL bCall){
     230void CSubAddrSchedule::add(SubInfo *psi,BOOL bCall){
    231231    if(!psi) return;
    232232
    233     ppsi=(SUBINFO **)HeapReAlloc(hHeap,0,ppsi,(num+1)*sizeof(SUBINFO *));
     233    ppsi=(SubInfo **)HeapReAlloc(hHeap,0,ppsi,(num+1)*sizeof(SubInfo *));
    234234    ppsi[num]=psi;
    235235    pbCall=(BOOL *)HeapReAlloc(hHeap,0,pbCall,(num+1)*sizeof(BOOL));
     
    282282CTempSchedule *pobj_TempSchedule;
    283283
     284
Note: See TracChangeset for help on using the changeset viewer.