From 716b3ef8850f210feac3a173597d2e6fd8743f7f Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Wed, 13 Oct 2021 09:26:57 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for b40a2801 --- cpu_scheduling_algorithms/fcfs_scheduling.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/cpu_scheduling_algorithms/fcfs_scheduling.cpp b/cpu_scheduling_algorithms/fcfs_scheduling.cpp index b78bbe055..0da9e0165 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 IO operations -#include /// for std::priority_queue -#include /// for std::unordered_set -#include /// for std::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 std::priority_queue +#include /// for std::unordered_set +#include /// for std::vector using std::cin; using std::cout; @@ -268,7 +268,8 @@ void test() { readyQueue.addProcess(get<0>(input[i]), get<1>(input[i]), get<2>(input[i])); } - vector> res = get_final_status(input); + vector> + res = get_final_status(input); assert(res == readyQueue.scheduleForFcfs()); // readyQueue.printResult(); }