Ignore:
Timestamp:
Jun 12, 2007, 6:13:49 PM (17 years ago)
Author:
dai_9181
Message:

クラス情報取得時のクラス先読み処理で名前空間の関係が崩れてしまうバグを修正。
インクルードパスに'/'文字を含めたときに'
'として判断するようにした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/BasicCompiler.cpp

    r97 r139  
    163163    int i,i2,i3,i4;
    164164    char temporary[MAX_PATH];
     165
     166    // '/'→'\'
     167    for( i=0;path[i];i++ ){
     168        if( path[i] == '/' ){
     169            path[i]='\\';
     170        }
     171    }
    165172
    166173    if(strstr(path,":")||strstr(path,"\\\\")) return;
Note: See TracChangeset for help on using the changeset viewer.