Changeset 207819 in webkit


Ignore:
Timestamp:
Oct 25, 2016 8:52:10 AM (7 years ago)
Author:
Konstantin Tokarev
Message:

Non-specialized version of deleteObject should not have template argument
https://bugs.webkit.org/show_bug.cgi?id=163943

Reviewed by Anders Carlsson.

Fixes compilation of GDIObject.h with MinGW

  • wtf/win/GDIObject.h:

(WTF::deleteObject):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r207794 r207819  
     12016-10-25  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        Non-specialized version of deleteObject should not have template argument
     4        https://bugs.webkit.org/show_bug.cgi?id=163943
     5
     6        Reviewed by Anders Carlsson.
     7
     8        Fixes compilation of GDIObject.h with MinGW
     9
     10        * wtf/win/GDIObject.h:
     11        (WTF::deleteObject):
     12
    1132016-10-24  Per Arne Vollan  <pvollan@apple.com>
    214
  • trunk/Source/WTF/wtf/win/GDIObject.h

    r194496 r207819  
    112112
    113113// Nearly all GDI types use the same DeleteObject call.
    114 template<typename T> inline void deleteObject<T>(T object)
     114template<typename T> inline void deleteObject(T object)
    115115{
    116116    if (object)
Note: See TracChangeset for help on using the changeset viewer.