Ignore:
Timestamp:
Jul 7, 2008, 9:01:06 AM (17 years ago)
Author:
[email protected]
Message:

2008-07-07 Sam Weinig <[email protected]>

Reviewed by Cameron Zwarich.

Third step in broad cleanup effort.

[ File list elided ]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/profiler/Profiler.cpp

    r35022 r35037  
    104104static inline void dispatchFunctionToProfiles(const Vector<RefPtr<Profile> >& profiles, Profile::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned currentPageGroupIdentifier)
    105105{
    106     for (size_t i = 0; i < profiles.size(); ++i)
     106    for (size_t i = 0; i < profiles.size(); ++i) {
    107107        if (profiles[i]->pageGroupIdentifier() == currentPageGroupIdentifier)
    108108            (profiles[i].get()->*function)(callIdentifier);
     109    }
    109110}
    110111
     
    164165}
    165166
    166 }   // namespace KJS
     167} // namespace KJS
Note: See TracChangeset for help on using the changeset viewer.