mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-18 15:29:18 +00:00
Use logical OR to quiet static analyzer (no functional change)
This commit is contained in:
parent
65fee5b2ec
commit
cfa2b57c68
@ -203,7 +203,7 @@ public:
|
||||
|
||||
bool TotalLengthChanged() const
|
||||
{
|
||||
return BoardWireLengthChanged() | ViaLengthChanged() | ChipWireLengthChanged();
|
||||
return BoardWireLengthChanged() || ViaLengthChanged() || ChipWireLengthChanged();
|
||||
}
|
||||
|
||||
LIST_ITEM* Parent() const
|
||||
|
Loading…
Reference in New Issue
Block a user