From 093b05d2bb5a74f982e768366381829ae161848f Mon Sep 17 00:00:00 2001 From: Sergei Shirokov Date: Sat, 24 Aug 2024 15:29:50 +0300 Subject: [PATCH] fix style --- c++/cavl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/cavl.hpp b/c++/cavl.hpp index d76c747..ac42c66 100644 --- a/c++/cavl.hpp +++ b/c++/cavl.hpp @@ -796,7 +796,7 @@ class Tree final // NOSONAR cpp:S3624 /// tree.remove(Node::search(root, search_predicate)); /// /// but it could be done also by direct node removal: - /// + /// /// if (auto* const node = Node::search(root, search_predicate) { /// node->remove(); /// }