Ignore:
Timestamp:
Jun 26, 2007, 1:48:18 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/MakePeHdr.cpp

    r193 r195  
    66#include <ClassImpl.h>
    77#include <Compiler.h>
     8#include <NamespaceSupporter.h>
    89
    910#include "../BasicCompiler_Common/common.h"
     
    169170
    170171    // 名前空間情報を取得
    171     NamespaceScopesCollection::CollectNamespaces(
     172    NamespaceSupporter::CollectNamespaces(
    172173        Smoothie::Lexical::source.GetBuffer(),
    173174        compiler.GetMeta().GetNamespaces()
     
    370371    if(!bDll){
    371372        // 名前空間が初期化されているかをチェック
    372         if( Smoothie::Temp::liveingNamespaceScopes.size() ){
     373        if( namespaceSupporter.GetLivingNamespaceScopes().size() ){
    373374            SetError();
    374375        }
     
    470471
    471472        // 名前空間が正しく閉じられているかをチェック
    472         if( Smoothie::Temp::liveingNamespaceScopes.size() ){
     473        if( namespaceSupporter.GetLivingNamespaceScopes().size() ){
    473474            SetError(63,NULL,-1);
    474475        }
Note: See TracChangeset for help on using the changeset viewer.