diff --git a/cpu_scheduling_algorithms/fcfs_scheduling.cpp b/cpu_scheduling_algorithms/fcfs_scheduling.cpp index 6eab989e4..4e899e5df 100644 --- a/cpu_scheduling_algorithms/fcfs_scheduling.cpp +++ b/cpu_scheduling_algorithms/fcfs_scheduling.cpp @@ -9,16 +9,17 @@ * @author [Pratyush Vatsa](https://github.com/Pratyush219) */ -#include /// for sorting -#include /// for assert -#include /// for integral typedefs -#include /// random number generation -#include /// for time -#include /// for formatting the output -#include /// for IO operations -#include /// for std::priority_queue -#include /// for std::unordered_set -#include /// for std::vector +#include // for sort +#include // for assert +#include // for uint32_t +#include // for rand, srand, size_t +#include // for time +#include // for setw, operator<<, _Setw, setprecision, _Set... +#include // for basic_ostream, char_traits, operator<<, left +#include // for priority_queue +#include // for unordered_set, operator== +#include // for vector, operator==, allocator +#include // for tuple, get, make_tuple, operator==, swap using std::cin; using std::cout;