Skip to content

Commit 24e597f

Browse files
chore: use iwyu on cpu_scheduling_algorithms/**.cpp
1 parent 3d80295 commit 24e597f

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

cpu_scheduling_algorithms/fcfs_scheduling.cpp

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@
99
* @author [Pratyush Vatsa](https://github.com/Pratyush219)
1010
*/
1111

12-
#include <algorithm> /// for sorting
13-
#include <cassert> /// for assert
14-
#include <cstdint> /// for integral typedefs
15-
#include <cstdlib> /// random number generation
16-
#include <ctime> /// for time
17-
#include <iomanip> /// for formatting the output
18-
#include <iostream> /// for IO operations
19-
#include <queue> /// for std::priority_queue
20-
#include <unordered_set> /// for std::unordered_set
21-
#include <vector> /// for std::vector
12+
#include <algorithm> // for sort
13+
#include <cassert> // for assert
14+
#include <cstdint> // for uint32_t
15+
#include <cstdlib> // for rand, srand, size_t
16+
#include <ctime> // for time
17+
#include <iomanip> // for setw, operator<<, _Setw, setprecision, _Set...
18+
#include <iostream> // for basic_ostream, char_traits, operator<<, left
19+
#include <queue> // for priority_queue
20+
#include <unordered_set> // for unordered_set, operator==
21+
#include <vector> // for vector, operator==, allocator
22+
#include <tuple> // for tuple, get, make_tuple, operator==, swap
2223

2324
using std::cin;
2425
using std::cout;

0 commit comments

Comments
 (0)