Ignore:
Timestamp:
Feb 11, 2011, 10:05:14 PM (13 years ago)
Author:
イグトランス (egtra)
Message:

Hashmapの実装にunorderedを用いるよう変更

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/egtra/ab5.0/abdev/BasicCompiler_Common/Debug.cpp

    r798 r803  
    276276UserProc *GetSubFromObp(ULONG_PTR pos)
    277277{
    278     compiler.GetObjectModule().meta.GetUserProcs().Iterator_Reset();
    279     while( compiler.GetObjectModule().meta.GetUserProcs().Iterator_HasNext() )
     278    foreach (auto pUserProc, compiler.GetObjectModule().meta.GetUserProcs())
    280279    {
    281         UserProc *pUserProc = compiler.GetObjectModule().meta.GetUserProcs().Iterator_GetNext();
    282 
    283280        if(rva_to_real(pUserProc->GetBeginOpAddress()) <= pos  &&
    284281            pos < rva_to_real(pUserProc->GetEndOpAddress()))
Note: See TracChangeset for help on using the changeset viewer.