Explicit bools for MS

Fixes https://gitlab.com/kicad/code/kicad/-/issues/6146
This commit is contained in:
Jon Evans 2020-10-23 21:35:23 -04:00
parent 59f3fefd17
commit 50cff57b9a
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ int ERC_TESTER::TestPinToPin()
needsDriver = refPin;
}
hasDriver |= DrivingPinTypes.count( refType );
hasDriver |= ( DrivingPinTypes.count( refType ) != 0 );
for( SCH_PIN* testPin : pins )
{