⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 201526 in webkit


Ignore:
Timestamp:
May 31, 2016, 2:44:18 PM (10 years ago)
Author:
jer.noble@apple.com
Message:

Unreviewed build fix; use ASSERT_UNUSED rather than ASSERT to fix release builds.

  • platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:

(WebCore::MediaPlayerPrivateAVFoundationObjC::removeSession):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r201524 r201526  
     12016-05-31  Jer Noble  <jer.noble@apple.com>
     2
     3        Unreviewed build fix; use ASSERT_UNUSED rather than ASSERT to fix release builds.
     4
     5        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
     6        (WebCore::MediaPlayerPrivateAVFoundationObjC::removeSession):
     7
    182016-05-31  Jer Noble  <jer.noble@apple.com>
    29
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm

    r201524 r201526  
    25882588void MediaPlayerPrivateAVFoundationObjC::removeSession(CDMSession& session)
    25892589{
    2590     ASSERT(&session == m_session);
     2590    ASSERT_UNUSED(session, &session == m_session);
    25912591    m_session = nullptr;
    25922592}
Note: See TracChangeset for help on using the changeset viewer.