From 63be7addc2c56b102b4f1603f73ecafa64c30548 Mon Sep 17 00:00:00 2001 From: Neha Hasija Date: Thu, 22 Oct 2020 00:45:03 +0530 Subject: [PATCH] Update math/power_of_two.cpp Co-authored-by: David Leal --- math/power_of_two.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/math/power_of_two.cpp b/math/power_of_two.cpp index 4efaa2772..e662c063c 100644 --- a/math/power_of_two.cpp +++ b/math/power_of_two.cpp @@ -49,6 +49,8 @@ void power_of_two(int n) { std::cout << "No, the number " << n << " is not a power of 2"; } } +} // namespace math + /** * @brief Main function