Changeset 149763 in webkit


Ignore:
Timestamp:
May 8, 2013 1:33:43 PM (11 years ago)
Author:
rwlbuis@webkit.org
Message:

Fix some compiler warnings (miscellaneous)
https://bugs.webkit.org/show_bug.cgi?id=80790

Patch by Rob Buis <rbuis@rim.com> on 2013-05-08
Reviewed by Philip Rogers.

Get rid of the following warning for BlackBerry:

BackingStoreClient.cpp:54:21: warning: unused parameter 'parentFrame' [-Wunused-parameter]

by using ASSERT_UNUSED instead of ASSERT.

  • WebKitSupport/BackingStoreClient.cpp:

(BlackBerry::WebKit::BackingStoreClient::create):

Location:
trunk/Source/WebKit/blackberry
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/ChangeLog

    r149711 r149763  
     12013-05-08  Rob Buis  <rbuis@rim.com>
     2
     3        Fix some compiler warnings (miscellaneous)
     4        https://bugs.webkit.org/show_bug.cgi?id=80790
     5
     6        Reviewed by Philip Rogers.
     7
     8        Get rid of the following warning for BlackBerry:
     9
     10        BackingStoreClient.cpp:54:21: warning: unused parameter 'parentFrame' [-Wunused-parameter]
     11
     12        by using ASSERT_UNUSED instead of ASSERT.
     13
     14        * WebKitSupport/BackingStoreClient.cpp:
     15        (BlackBerry::WebKit::BackingStoreClient::create):
     16
    1172013-05-07  Xuefei Ren  <xren@blackberry.com>
    218
  • trunk/Source/WebKit/blackberry/WebKitSupport/BackingStoreClient.cpp

    r147744 r149763  
    5454BackingStoreClient* BackingStoreClient::create(Frame* frame, Frame* parentFrame, WebPage* parentPage)
    5555{
    56     ASSERT(!parentFrame);
     56    ASSERT_UNUSED(parentFrame, !parentFrame);
    5757    BackingStoreClient* it = new BackingStoreClient(frame, parentPage);
    5858    return it;
Note: See TracChangeset for help on using the changeset viewer.