Changeset 35511 in webkit


Ignore:
Timestamp:
Aug 1, 2008 1:38:31 AM (16 years ago)
Author:
ap@webkit.org
Message:

Rubber-stamped by Maciej.

Remove JSGlobalData::DataInstance. It was only needed when we had per-thread JSGlobalData
instances.

  • kjs/JSGlobalData.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r35487 r35511  
     12008-08-01  Alexey Proskuryakov  <ap@webkit.org>
     2
     3        Rubber-stamped by Maciej.
     4
     5        Remove JSGlobalData::DataInstance. It was only needed when we had per-thread JSGlobalData
     6        instances.
     7
     8        * kjs/JSGlobalData.h:
     9
    1102008-07-31  Kevin Ollivier <kevino@theolliviers.com>
    211
  • trunk/JavaScriptCore/kjs/JSGlobalData.h

    r35478 r35511  
    8585    private:
    8686        JSGlobalData();
    87 
    88         struct DataInstance {
    89             DataInstance() : m_data(0) { }
    90             ~DataInstance() { delete m_data; }
    91             operator JSGlobalData*&() { return m_data; }
    92 
    93             JSGlobalData* m_data;
    94         };
    9587    };
    9688
Note: See TracChangeset for help on using the changeset viewer.