diff --git a/data_structures/avltree.cpp b/data_structures/avltree.cpp index 8107eb7a1..19053224a 100644 --- a/data_structures/avltree.cpp +++ b/data_structures/avltree.cpp @@ -6,9 +6,9 @@ * \warning This program is a poor implementation and does not utilize any of * the C++ STL features. */ -#include // for std::max -#include // for std::cout -#include // for std::queue +#include /// for std::max +#include /// for std::cout +#include /// for std::queue using node = struct node { int data;