Fix equal comparison in BOM_PRESET

Fixes #18097.
This commit is contained in:
xx
2024-06-03 16:33:34 +00:00
committed by Mike Williams
parent ec0fdfffff
commit 4dffa6f9e8
+1
View File
@@ -112,6 +112,7 @@ bool BOM_PRESET::operator==( const BOM_PRESET& rhs ) const
&& this->fieldsOrdered == rhs.fieldsOrdered
&& this->sortField == rhs.sortField
&& this->sortAsc == rhs.sortAsc
&& this->filterString == rhs.filterString
&& this->groupSymbols == rhs.groupSymbols
&& this->excludeDNP == rhs.excludeDNP
&& this->includeExcludedFromBOM == rhs.includeExcludedFromBOM;