From 3911076326059945990138870942693848884934 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 15 Mar 2023 20:51:23 -0400 Subject: Fix NameList::operator!= --- type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'type.cpp') diff --git a/type.cpp b/type.cpp index f3ad65a6..d7d2dfe4 100644 --- a/type.cpp +++ b/type.cpp @@ -87,7 +87,7 @@ bool NameList::operator==(const NameList& other) const bool NameList::operator!=(const NameList& other) const { - return m_name != other.m_name && m_join != other.m_join; + return m_name != other.m_name || m_join != other.m_join; } -- cgit v1.3.1