diff --git a/data_structures/stack.hpp b/data_structures/stack.hpp index ec25cd0ea..dcd50b8a1 100644 --- a/data_structures/stack.hpp +++ b/data_structures/stack.hpp @@ -1,15 +1,16 @@ /** * @file * @author danghai + * @author [Piotr Idzik](https://github.com/vil02) * @brief This class specifies the basic operation on a stack as a linked list **/ #ifndef DATA_STRUCTURES_STACK_HPP_ #define DATA_STRUCTURES_STACK_HPP_ -#include -#include +#include /// for assert +#include /// for IO operations #include -#include +#include /// for std::vector /** Definition of the node as a linked-list * \tparam ValueType type of data nodes of the linked list should contain