7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 14:31:42 +00:00

Fix equal comparison in BOM_PRESET

Fixes .
This commit is contained in:
xx 2024-05-29 22:04:53 +02:00 committed by Mike Williams
parent ec0fdfffff
commit 4dffa6f9e8

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;