fix indentation of greatestCommonDivisor

This commit is contained in:
Benjamin Sergeant 2019-04-25 16:21:36 -07:00
parent e4c09284b5
commit b178ba16af

View File

@ -51,7 +51,10 @@
#include <thread>
int greatestCommonDivisor (int a, int b) {
namespace
{
int greatestCommonDivisor(int a, int b)
{
while (b != 0)
{
int t = b;
@ -61,6 +64,7 @@ int greatestCommonDivisor (int a, int b) {
return a;
}
}
namespace ix
{