From e8cd47e65c035528d97db332f91973dfe8b98bd4 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Sat, 6 Jan 2024 12:53:12 +0100 Subject: [PATCH] Override MxAtomId::operator!= --- LEGO1/mxatomid.h | 1 + 1 file changed, 1 insertion(+) diff --git a/LEGO1/mxatomid.h b/LEGO1/mxatomid.h index 5d4cd10f..3abe6479 100644 --- a/LEGO1/mxatomid.h +++ b/LEGO1/mxatomid.h @@ -20,6 +20,7 @@ class MxAtomId { MxAtomId() { this->m_internal = 0; } inline MxBool operator==(const MxAtomId& p_atomId) const { return this->m_internal == p_atomId.m_internal; } + inline MxBool operator!=(const MxAtomId& p_atomId) const { return this->m_internal != p_atomId.m_internal; } void Clear();