Skip to content

Commit 97602d7

Browse files
chroe: add cstdint
1 parent fb27d4d commit 97602d7

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

data_structures/trie_tree.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*/
1010
#include <array>
1111
#include <cassert>
12+
#include <cstdint>
1213
#include <iostream>
1314
#include <memory>
1415
#include <string>

machine_learning/a_star_search.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@
2222
#include <algorithm> /// for `std::reverse` function
2323
#include <array> /// for `std::array`, representing `EightPuzzle` board
2424
#include <cassert> /// for `assert`
25+
#include <cstdint> /// for `std::uint32_t`
2526
#include <functional> /// for `std::function` STL
2627
#include <iostream> /// for IO operations
2728
#include <map> /// for `std::map` STL
2829
#include <memory> /// for `std::shared_ptr`
2930
#include <set> /// for `std::set` STL
3031
#include <vector> /// for `std::vector` STL
32+
3133
/**
3234
* @namespace machine_learning
3335
* @brief Machine learning algorithms

range_queries/persistent_seg_tree_lazy_prop.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*
2323
* @author [Magdy Sedra](https://github.com/MSedra)
2424
*/
25+
#include <cstdint> /// for std::uint32_t
2526
#include <iostream> /// for IO operations
2627
#include <memory> /// to manage dynamic memory
2728
#include <vector> /// for std::vector

0 commit comments

Comments
 (0)