Ignore:
Timestamp:
Feb 10, 2008, 6:03:31 PM (17 years ago)
Author:
Darin Adler
Message:

JavaScriptCore:

Reviewed by Eric.

  • wtf/RefCounted.h: (WTF::RefCounted::RefCounted): Remove default of 0.

WebKit/wx:

Reviewed by Eric.

  • WebKitSupport/FrameLoaderClientWx.cpp: (WebCore::FrameLoaderClientWx::FrameLoaderClientWx): Set the count to 0 explicitly (one stray client I missed in my last pass).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/RefCounted.h

    r30051 r30133  
    2929template<class T> class RefCounted : Noncopyable {
    3030public:
    31     RefCounted(int initialRefCount = 0)
     31    RefCounted(int initialRefCount)
    3232        : m_refCount(initialRefCount)
    3333#ifndef NDEBUG
Note: See TracChangeset for help on using the changeset viewer.