Address PR feedback.

This commit is contained in:
Brian Phlipot
2022-12-23 12:34:02 -07:00
committed by teejusb
parent 4a6b1a743c
commit d079940fea
44 changed files with 259 additions and 236 deletions
+1 -10
View File
@@ -110,16 +110,7 @@ namespace
int GCD( int i1, int i2 )
{
for(;;)
{
unsigned iRem = i2 % i1;
if( iRem == 0 )
{
return i1;
}
i2 = i1;
i1 = iRem;
}
return std::gcd(i1, i2);
}
}