Changeset 79896 in webkit


Ignore:
Timestamp:
Feb 28, 2011 12:25:04 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-02-28 Alexis Menard <alexis.menard@openbossa.org>

Reviewed by Alexey Proskuryakov.

Build fix for Intel ICC Compiler.
https://bugs.webkit.org/show_bug.cgi?id=55221

The virtual inheritance seems to confuse ICC.
Anything that links with webkit has an undefined reference otherwise.

  • svg/SVGTransformable.cpp: (WebCore::SVGTransformable::~SVGTransformable):
  • svg/SVGTransformable.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r79889 r79896  
     12011-02-28  Alexis Menard  <alexis.menard@openbossa.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Build fix for Intel ICC Compiler.
     6        https://bugs.webkit.org/show_bug.cgi?id=55221
     7
     8        The virtual inheritance seems to confuse ICC.
     9        Anything that links with webkit has an undefined reference otherwise.
     10
     11        * svg/SVGTransformable.cpp:
     12        (WebCore::SVGTransformable::~SVGTransformable):
     13        * svg/SVGTransformable.h:
     14
    1152011-02-28  Sergio Villar Senin  <svillar@igalia.com>
    216
  • trunk/Source/WebCore/svg/SVGTransformable.cpp

    r72500 r79896  
    9090static const int optionalValuesForType[] =  {0, 0, 1, 1, 2, 0, 0};
    9191
     92// This destructor is needed in order to link correctly with Intel ICC.
     93SVGTransformable::~SVGTransformable()
     94{
     95}
     96
    9297bool SVGTransformable::parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform& transform)
    9398{
  • trunk/Source/WebCore/svg/SVGTransformable.h

    r71802 r79896  
    4141    };
    4242
     43    virtual ~SVGTransformable();
     44
    4345    static bool parseTransformAttribute(SVGTransformList&, const AtomicString& transform);
    4446    static bool parseTransformAttribute(SVGTransformList&, const UChar*& ptr, const UChar* end, TransformParsingMode mode = ClearList);
Note: See TracChangeset for help on using the changeset viewer.