Ignore:
Timestamp:
Jun 24, 2007, 6:49:13 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/VarList.cpp

    r140 r182  
     1#include <jenga/include/smoothie/Smoothie.h>
     2
    13#include "../BasicCompiler_Common/common.h"
    24
     
    266268    extern int MemPos_RWSection;
    267269
    268     foreach( Variable *pVar, globalVars ){
     270    BOOST_FOREACH( Variable *pVar, globalVars ){
    269271
    270272        //スコープ外の場合は無視
     
    362364    if(!pUserProc) return;
    363365
    364     foreach( Variable *pVar, pUserProc->localVars ){
     366    BOOST_FOREACH( Variable *pVar, pUserProc->localVars ){
    365367
    366368        //スコープ外の場合は無視
     
    725727
    726728        if(pUserProc){
    727             pobj_CompilingClass = pUserProc->GetParentClassPtr();
     729            Smoothie::Temp::pCompilingClass = pUserProc->GetParentClassPtr();
    728730            UserProc::CompileStartForUserProc( pUserProc );
    729731        }
Note: See TracChangeset for help on using the changeset viewer.