From 4aaa66fbc7aad98e1bdd3aa293ba56f2d07c28e0 Mon Sep 17 00:00:00 2001 From: Pratyush219 Date: Wed, 13 Oct 2021 14:17:01 +0530 Subject: [PATCH] Fixed documentation --- cpu_scheduling_algorithms/fcfs_scheduling.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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++) {