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

    r140 r182  
     1#include <jenga/include/smoothie/Smoothie.h>
     2
    13#include "common.h"
    24
     
    316318    GlobalProc *pUserProc = GetSubFromObp(obp_Rip);
    317319
    318     foreach( Variable *pVar, pUserProc->localVars ){
     320    BOOST_FOREACH( Variable *pVar, pUserProc->localVars ){
    319321        if( pVar->GetName() == "_System_LocalThis" ){
    320322            return pVar->offset;
     
    369371    }
    370372
    371     if(pobj_CompilingClass){
     373    if(Smoothie::Temp::pCompilingClass){
    372374        ///////////////////////
    373375        // クラスメンバの参照
     
    383385
    384386            bool isFound = false;
    385             BOOST_FOREACH( CMember *pMember, pobj_CompilingClass->GetDynamicMembers() ){
     387            BOOST_FOREACH( CMember *pMember, Smoothie::Temp::pCompilingClass->GetDynamicMembers() ){
    386388                if( pMember->GetName() == VarName ){
    387389                    isFound = true;
     
    412414        pRelativeVar->dwKind=VAR_DIRECTMEM;
    413415
    414         i3=Debugging_GetMember(*pobj_CompilingClass,variable,pRelativeVar,resultType,1);
     416        i3=Debugging_GetMember(*Smoothie::Temp::pCompilingClass,variable,pRelativeVar,resultType,1);
    415417        if(i3==0){
    416418            //式エラー
Note: See TracChangeset for help on using the changeset viewer.