Skip to content

Commit bbbd9ab

Browse files
Update data_structures/queue_using_array.cpp
1 parent 04c9f15 commit bbbd9ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/queue_using_array.cpp

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

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

0 commit comments

Comments
 (0)