From 5f7351bf6ed3d5978016cdb1d344b066aff01e58 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Thu, 31 Jan 2019 12:40:37 -0500 Subject: [PATCH] Fixed syntax error in getDivisors --- Algorithms.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms.hpp b/Algorithms.hpp index 3dd21b7..909bb40 100644 --- a/Algorithms.hpp +++ b/Algorithms.hpp @@ -217,7 +217,7 @@ std::vector getDivisors(T num){ divisors.push_back(possibleDivisor); //We still need to account for sqrt(num) being a divisor if(possibleDivisor != topPossibleDivisor){ - divisors.push_back(num / possibleDivisor) + divisors.push_back(num / possibleDivisor); } } }