Skip to content

Commit b35b721

Browse files
vil02Panquesito7
andauthored
docs: update authors and include comments
apply suggestions of @Panquesito7 Co-authored-by: David Leal <halfpacho@gmail.com>
1 parent 4429d38 commit b35b721

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

data_structures/stack.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
/**
22
* @file
33
* @author danghai
4+
* @author [Piotr Idzik](https://github.com/vil02)
45
* @brief This class specifies the basic operation on a stack as a linked list
56
**/
67
#ifndef DATA_STRUCTURES_STACK_HPP_
78
#define DATA_STRUCTURES_STACK_HPP_
89

9-
#include <cassert>
10-
#include <iostream>
10+
#include <cassert> /// for assert
11+
#include <iostream> /// for IO operations
1112
#include <memory>
12-
#include <vector>
13+
#include <vector> /// for std::vector
1314

1415
/** Definition of the node as a linked-list
1516
* \tparam ValueType type of data nodes of the linked list should contain

0 commit comments

Comments
 (0)