From 2d738ecf1cad55ab427a6426ce7ef99811b723ad Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 14 Jul 2021 00:26:03 -0500 Subject: [PATCH] Apply suggestions from code review --- operations_on_datastructures/inorder_successor_of_bst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations_on_datastructures/inorder_successor_of_bst.cpp b/operations_on_datastructures/inorder_successor_of_bst.cpp index b5f454f30..8be1e385f 100644 --- a/operations_on_datastructures/inorder_successor_of_bst.cpp +++ b/operations_on_datastructures/inorder_successor_of_bst.cpp @@ -404,7 +404,7 @@ int main(int argc, char *argv[]) { } else { std::cout << "Target element is : " << targetElement << std::endl; std::cout << "Inorder successor for target element is : " - << inorderSuccessor->data; + << inorderSuccessor->data << std::endl; } delete (inorderSuccessor);