Title: [293315] trunk/Source/_javascript_Core
Revision
293315
Author
[email protected]
Date
2022-04-24 23:41:42 -0700 (Sun, 24 Apr 2022)

Log Message

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

* wasm/WasmTypeDefinition.h:
(JSC::Wasm::FunctionSignature::operator!= const):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (293314 => 293315)


--- trunk/Source/_javascript_Core/ChangeLog	2022-04-25 06:36:11 UTC (rev 293314)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-04-25 06:41:42 UTC (rev 293315)
@@ -1,3 +1,10 @@
+2022-04-24  Diego Pino Garcia  <[email protected]>
+
+        [GCC] Unreviewed, build fix for Ubuntu LTS/Debian after r293265
+
+        * wasm/WasmTypeDefinition.h:
+        (JSC::Wasm::FunctionSignature::operator!= const):
+
 2022-04-24  Dmitry Bezhetskov  <[email protected]>
 
         [Wasm] Remove confusing isFuncref and isExternref

Modified: trunk/Source/_javascript_Core/wasm/WasmTypeDefinition.h (293314 => 293315)


--- trunk/Source/_javascript_Core/wasm/WasmTypeDefinition.h	2022-04-25 06:36:11 UTC (rev 293314)
+++ trunk/Source/_javascript_Core/wasm/WasmTypeDefinition.h	2022-04-25 06:41:42 UTC (rev 293315)
@@ -67,6 +67,7 @@
         // Other checks probably aren't necessary but it's good to be paranoid.
         return m_payload == other.m_payload && m_argCount == other.m_argCount && m_retCount == other.m_retCount;
     }
+    bool operator!=(const FunctionSignature& other) const { return !(*this == other); }
 
     WTF::String toString() const;
     void dump(WTF::PrintStream& out) const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to