diff --git a/NumberTheory/Factors.hpp b/NumberTheory/Factors.hpp index 98832d247..9fe660bc2 100644 --- a/NumberTheory/Factors.hpp +++ b/NumberTheory/Factors.hpp @@ -16,6 +16,7 @@ namespace NumberTheory { @returns The greatest common divisor of @c a and @c b as computed by Euclid's algorithm. */ template T greatest_common_divisor(T a, T b) { + // TODO: replace with the C++17 GCD function, once available. if(a < b) { std::swap(a, b); }