Changeset 139 in dev for BasicCompiler_Common/Class.cpp


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/Class.cpp

    r137 r139  
    998998
    999999    // 名前空間管理
     1000    NamespaceScopes backupNamespaceScopes = Smoothie::Lexical::liveingNamespaceScopes;
    10001001    NamespaceScopes &namespaceScopes = Smoothie::Lexical::liveingNamespaceScopes;
    10011002    namespaceScopes.clear();
     
    14401441        }
    14411442    }
     1443
     1444
     1445    // 名前空間を元に戻す
     1446    Smoothie::Lexical::liveingNamespaceScopes = backupNamespaceScopes;
    14421447}
    14431448
Note: See TracChangeset for help on using the changeset viewer.