diff --git a/cpu_scheduling_algorithms/fcfs_scheduling.cpp b/cpu_scheduling_algorithms/fcfs_scheduling.cpp index ebd35f189..e2046ed8d 100644 --- a/cpu_scheduling_algorithms/fcfs_scheduling.cpp +++ b/cpu_scheduling_algorithms/fcfs_scheduling.cpp @@ -9,15 +9,15 @@ * @author Pratyush Vatsa(https://github.com/Pratyush219) */ -#include // for sorting -#include //for assert -#include // random number generation -#include // for time -#include // for formatting the output -#include // for IO operations -#include // for priority_queue -#include // for using unordered_set -#include // for using vector +#include /// for sorting +#include /// for assert +#include /// random number generation +#include /// for time +#include /// for formatting the output +#include /// for IO operations +#include /// for priority_queue +#include /// for std::unordered_set +#include /// for using vector using std::cin; using std::cout; @@ -224,7 +224,7 @@ class FCFS { template vector> get_final_status( vector> input) { - sort(input.begin(), input.end(), sortcol); + sort(input.begin(), input.end(), sortcol); vector> result(input.size()); double timeElapsed = 0; for (size_t i{}; i < input.size(); i++) {