diff options
| author | Glenn Smith <glenn@vector35.com> | 2023-03-15 20:51:23 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2023-03-29 16:39:37 -0400 |
| commit | 3911076326059945990138870942693848884934 (patch) | |
| tree | b5a2c99857072d0ccc1fe9fdab198fa3fc2cd18d /type.cpp | |
| parent | 2324618008670469819575185748778191038053 (diff) | |
Fix NameList::operator!=
Diffstat (limited to 'type.cpp')
| -rw-r--r-- | type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
