Changeset 180988 in webkit


Ignore:
Timestamp:
Mar 3, 2015 9:25:50 PM (9 years ago)
Author:
shiva.jm@samsung.com
Message:

Fix build warning in WebKit2/Shared module.
https://bugs.webkit.org/show_bug.cgi?id=142213

Reviewed by Simon Fraser.

Fix build warning by removing argument name from function.

  • Shared/WebCoreArgumentCoders.cpp:

(IPC::pathPointCountApplierFunction):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r180985 r180988  
     12015-03-03  Shivakumar JM  <shiva.jm@samsung.com>
     2
     3        Fix build warning in WebKit2/Shared module.
     4        https://bugs.webkit.org/show_bug.cgi?id=142213
     5
     6        Reviewed by Simon Fraser.
     7
     8        Fix build warning by removing argument name from function.
     9
     10        * Shared/WebCoreArgumentCoders.cpp:
     11        (IPC::pathPointCountApplierFunction):
     12
    1132015-03-03  Andy Estes  <aestes@apple.com>
    214
  • trunk/Source/WebKit2/Shared/WebCoreArgumentCoders.cpp

    r180882 r180988  
    366366}
    367367
    368 static void pathPointCountApplierFunction(void* info, const PathElement* element)
     368static void pathPointCountApplierFunction(void* info, const PathElement*)
    369369{
    370370    uint64_t* pointCount = static_cast<uint64_t*>(info);
Note: See TracChangeset for help on using the changeset viewer.