Changeset 293315 in webkit
- Timestamp:
- Apr 24, 2022, 11:41:42 PM (4 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
wasm/WasmTypeDefinition.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r293314 r293315 1 2022-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 1 8 2022-04-24 Dmitry Bezhetskov <dbezhetskov@igalia.com> 2 9 -
trunk/Source/JavaScriptCore/wasm/WasmTypeDefinition.h
r293265 r293315 68 68 return m_payload == other.m_payload && m_argCount == other.m_argCount && m_retCount == other.m_retCount; 69 69 } 70 bool operator!=(const FunctionSignature& other) const { return !(*this == other); } 70 71 71 72 WTF::String toString() const;
Note:
See TracChangeset
for help on using the changeset viewer.