From 24e597f7e249c7fd6998b2db39eba7a91d484455 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:37:34 +0530 Subject: [PATCH] chore: use iwyu on cpu_scheduling_algorithms/**.cpp --- cpu_scheduling_algorithms/fcfs_scheduling.cpp | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) 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;