Changeset 69122 in webkit


Ignore:
Timestamp:
Oct 5, 2010 10:14:38 AM (13 years ago)
Author:
Simon Hausmann
Message:

[Qt] Fix breakage in RVCT 2.2 compile
https://bugs.webkit.org/show_bug.cgi?id=47187

Patch by Keith Kyzivat <keith.kyzivat@nokia.com> on 2010-10-05
Reviewed by Simon Hausmann.

Fix bug in RVCT 2.2 compile for Symbian3 in html/canvas/Int32Array.h and
html/canvas/Uin8Array.h
For RVCT2.2, the using clause is unneeded, and can be omitted.

A Test case cannot be made for this since this is a build-related issue.

  • html/canvas/Int32Array.h:
  • html/canvas/Uint8Array.h:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69121 r69122  
     12010-10-05  Keith Kyzivat  <keith.kyzivat@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] Fix breakage in RVCT 2.2 compile
     6        https://bugs.webkit.org/show_bug.cgi?id=47187
     7
     8        Fix bug in RVCT 2.2 compile for Symbian^3 in html/canvas/Int32Array.h and
     9        html/canvas/Uin8Array.h
     10        For RVCT2.2, the using clause is unneeded, and can be omitted.
     11
     12        A Test case cannot be made for this since this is a build-related issue.
     13
     14        * html/canvas/Int32Array.h:
     15        * html/canvas/Uint8Array.h:
     16
    1172010-10-04  Andrei Popescu  <andreip@google.com>
    218
  • trunk/WebCore/html/canvas/Int32Array.h

    r59499 r69122  
    3838    static PassRefPtr<Int32Array> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
    3939
     40#if !COMPILER(RVCT)
    4041    using TypedArrayBase<int>::set;
    4142    using IntegralTypedArrayBase<int>::set;
     43#endif
    4244
    4345  private:
  • trunk/WebCore/html/canvas/Uint8Array.h

    r59499 r69122  
    4040    static PassRefPtr<Uint8Array> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
    4141
     42#if !COMPILER(RVCT)
    4243    using TypedArrayBase<unsigned char>::set;
    4344    using IntegralTypedArrayBase<unsigned char>::set;
     45#endif
    4446
    4547  private:
Note: See TracChangeset for help on using the changeset viewer.