Changeset 149563 in webkit


Ignore:
Timestamp:
May 4, 2013 12:36:34 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

No need to declare JSC::LLInt::Data as friend class of WTF::StringImpl
https://bugs.webkit.org/show_bug.cgi?id=115587

Patch by Xan Lopez <xlopez@igalia.com> on 2013-05-04
Reviewed by Andreas Kling.

No need to declare LLInt::Data as friend class of WTF::StringImpl,
it does not use any private method/data member of the latter.

  • wtf/text/StringImpl.h:

(StringImpl):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r149524 r149563  
     12013-05-04  Xan Lopez  <xlopez@igalia.com>
     2
     3        No need to declare JSC::LLInt::Data as friend class of WTF::StringImpl
     4        https://bugs.webkit.org/show_bug.cgi?id=115587
     5
     6        Reviewed by Andreas Kling.
     7
     8        No need to declare LLInt::Data as friend class of WTF::StringImpl,
     9        it does not use any private method/data member of the latter.
     10
     11        * wtf/text/StringImpl.h:
     12        (StringImpl):
     13
    1142013-05-03  Brent Fulgham  <bfulgham@webkit.org>
    215
  • trunk/Source/WTF/wtf/text/StringImpl.h

    r148921 r149563  
    5252namespace JSC {
    5353struct IdentifierASCIIStringTranslator;
    54 namespace LLInt { class Data; }
    5554class LLIntOffsetsExtractor;
    5655template <typename T> struct IdentifierCharBufferTranslator;
     
    145144    friend struct WTF::UCharBufferTranslator;
    146145    friend class AtomicStringImpl;
    147     friend class JSC::LLInt::Data;
    148146    friend class JSC::LLIntOffsetsExtractor;
    149147   
Note: See TracChangeset for help on using the changeset viewer.