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

Changeset 293315 in webkit


Ignore:
Timestamp:
Apr 24, 2022, 11:41:42 PM (4 years ago)
Author:
Diego Pino Garcia
Message:

[GCC] Unreviewed, build fix for Ubuntu LTS/Debian after r293265

  • wasm/WasmTypeDefinition.h:

(JSC::Wasm::FunctionSignature::operator!= const):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r293314 r293315  
     12022-04-24  Diego Pino Garcia  <dpino@igalia.com>
     2
     3        [GCC] Unreviewed, build fix for Ubuntu LTS/Debian after r293265
     4
     5        * wasm/WasmTypeDefinition.h:
     6        (JSC::Wasm::FunctionSignature::operator!= const):
     7
    182022-04-24  Dmitry Bezhetskov  <dbezhetskov@igalia.com>
    29
  • trunk/Source/JavaScriptCore/wasm/WasmTypeDefinition.h

    r293265 r293315  
    6868        return m_payload == other.m_payload && m_argCount == other.m_argCount && m_retCount == other.m_retCount;
    6969    }
     70    bool operator!=(const FunctionSignature& other) const { return !(*this == other); }
    7071
    7172    WTF::String toString() const;
Note: See TracChangeset for help on using the changeset viewer.