From 81b50f92f65b80afb9a4f97c716a5404de904ed7 Mon Sep 17 00:00:00 2001 From: Matthew Ellison Date: Fri, 9 Nov 2018 00:53:45 -0500 Subject: [PATCH] Added the correct namespace to the file --- Algorithms.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Algorithms.hpp b/Algorithms.hpp index 4a4ab18..7662eec 100644 --- a/Algorithms.hpp +++ b/Algorithms.hpp @@ -10,6 +10,8 @@ #include #include +namespace mee{ + template std::vector getPrimes(T goalNumber){ @@ -87,4 +89,7 @@ bool isFound(T num, std::vector list){ } +} + + #endif //MEE_ALGORITHMS_HPP