summaryrefslogtreecommitdiff
path: root/type.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2023-03-15 20:51:23 -0400
committerGlenn Smith <glenn@vector35.com>2023-03-29 16:39:37 -0400
commit3911076326059945990138870942693848884934 (patch)
treeb5a2c99857072d0ccc1fe9fdab198fa3fc2cd18d /type.cpp
parent2324618008670469819575185748778191038053 (diff)
Fix NameList::operator!=
Diffstat (limited to 'type.cpp')
-rw-r--r--type.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}