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

    r34962 r35037  
    3030#include "ProfileNode.h"
    3131
     32#include "DateMath.h"
    3233#include "Profiler.h"
    33 #include "DateMath.h"
    34 
    3534#include <stdio.h>
    3635
     
    8079    }
    8180
    82     RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this);   // If this ProfileNode has no head it is the head.
     81    RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head.
    8382    if (m_children.size())
    8483        m_children.last()->setNextSibling(newChild.get());
     
    317316#endif
    318317
    319 }   // namespace KJS
     318} // namespace KJS
Note: See TracChangeset for help on using the changeset viewer.