From f76c1009d7079b0f8965c19d06792496905aa71c Mon Sep 17 00:00:00 2001 From: Neha Hasija Date: Thu, 22 Oct 2020 14:50:05 +0530 Subject: [PATCH] Update math/power_of_two.cpp Co-authored-by: David Leal --- math/power_of_two.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/power_of_two.cpp b/math/power_of_two.cpp index e662c063c..c797a8175 100644 --- a/math/power_of_two.cpp +++ b/math/power_of_two.cpp @@ -62,6 +62,6 @@ int main() { std::cout << "enter a number " << std::endl; std::cin >> n; /// function call with @param n - power_of_two(n); + math::power_of_two(n); return 0; }