Skip to content

Commit 1b8b60f

Browse files
Update data_structures/stack_using_array.cpp
1 parent a027a13 commit 1b8b60f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

data_structures/stack_using_array.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#include <cassert>
2-
#include <iostream>
3-
#include <memory>
4-
#include <stdexcept>
1+
#include <cassert> /// For std::assert
2+
#include <iostream> /// For std::cout
3+
#include <memory> /// For std::unique_ptr
4+
#include <stdexcept> /// For std::out_of_range
55

66
namespace data_structures {
77
/**

0 commit comments

Comments
 (0)