Skip to content

Commit b8e5592

Browse files
fix add <cstdint> to datastructures/queue_using_array.cpp
1 parent ef59b45 commit b8e5592

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/queue_using_array.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* @author [Farbod Ahmadian](https://github.com/farbodahm)
1919
*/
2020
#include <array> /// for std::array
21+
#include <cstdint> /// for integral typedefs
2122
#include <iostream> /// for io operations
2223

2324
constexpr uint16_t max_size{10}; ///< Maximum size of the queue

0 commit comments

Comments
 (0)