From cb9877a0861cd8e684f6551ec0c6b5834bb788f3 Mon Sep 17 00:00:00 2001 From: Guillaume Bittoun Date: Wed, 15 Oct 2014 20:28:38 +0000 Subject: [PATCH] =?UTF-8?q?avl=5Ftree:=20using=20contiguous=20buffer=20for?= =?UTF-8?q?=20node=20storage.=20Copy=20is=20still=20unsafe=20and=20this=20?= =?UTF-8?q?solution=20needs=20review=20before=20complete=20validation=20(s?= =?UTF-8?q?am=E2=80=A6=20=3F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/t/algorithm/avl_tree.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/t/algorithm/avl_tree.cpp b/src/t/algorithm/avl_tree.cpp index 90713f26..3f9140b9 100644 --- a/src/t/algorithm/avl_tree.cpp +++ b/src/t/algorithm/avl_tree.cpp @@ -12,6 +12,8 @@ #include +#include + #include namespace lol