Ignore:
Timestamp:
Jun 4, 2007, 7:49:17 AM (17 years ago)
Author:
dai_9181
Message:

Prototypeクラスを用意した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/LoopRefCheck.cpp

    r90 r131  
    2424    init();
    2525}
    26 void CLoopRefCheck::add(char *lpszInheritsClass){
     26void CLoopRefCheck::add(const char *lpszInheritsClass){
    2727    names=(char **)HeapReAlloc(hHeap,0,names,(num+1)*sizeof(char *));
    2828    names[num]=(char *)HeapAlloc(hHeap,0,lstrlen(lpszInheritsClass)+1);
     
    3030    num++;
    3131}
    32 void CLoopRefCheck::del(char *lpszInheritsClass){
     32void CLoopRefCheck::del(const char *lpszInheritsClass){
    3333    int i;
    3434    for(i=0;i<num;i++){
     
    5050    int i;
    5151    for(i=0;i<num;i++){
    52         if(lstrcmp(names[i],inheritsClass.name)==0) return 1;
     52        if( inheritsClass.GetName() == names[i] ){
     53            return 1;
     54        }
    5355    }
    5456    return 0;
Note: See TracChangeset for help on using the changeset viewer.