Fix equal comparison in BOM_PRESET

Fixes #18097.
This commit is contained in:
xx 2024-05-29 22:04:53 +02:00 committed by Mike Williams
parent ec0fdfffff
commit 4dffa6f9e8
1 changed files with 1 additions and 0 deletions

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;