From fb86292d80f8a7cde7b9ac0440e59d1ac62db530 Mon Sep 17 00:00:00 2001 From: Alvin Philips Date: Tue, 19 Oct 2021 06:32:31 +0530 Subject: [PATCH] Fixed issue with incorrect using statement --- operations_on_datastructures/reverse_binary_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations_on_datastructures/reverse_binary_tree.cpp b/operations_on_datastructures/reverse_binary_tree.cpp index 475f9afa9..0d774c47b 100644 --- a/operations_on_datastructures/reverse_binary_tree.cpp +++ b/operations_on_datastructures/reverse_binary_tree.cpp @@ -151,7 +151,7 @@ class BinaryTree { * @namespace tests */ namespace tests { -using operations_on_datastructures::reverse_binary_tree; +using operations_on_datastructures::reverse_binary_tree::BinaryTree; void test1() { BinaryTree bst; bst.add(5);