From a02d6069b4f1514bb1d698018f5a22e3502da65b Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 25 Mar 2024 14:28:40 +0100 Subject: [PATCH] utils/worker.cpp: improved including + using --- src/utils/worker.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/utils/worker.cpp b/src/utils/worker.cpp index 8c32fe08ff..277f7e6c79 100644 --- a/src/utils/worker.cpp +++ b/src/utils/worker.cpp @@ -3,7 +3,7 @@ * @author Martin Pulec */ /* - * Copyright (c) 2013 CESNET, z. s. p. o. + * Copyright (c) 2013-2024 CESNET, z. s. p. o. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -35,10 +35,6 @@ * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "utils/misc.h" // get_cpu_core_count -#include "utils/thread.h" -#include "utils/worker.h" - #include #include #include @@ -46,7 +42,13 @@ #include #include -using namespace std; +#include "utils/misc.h" // get_cpu_core_count +#include "utils/thread.h" +#include "utils/worker.h" + +using std::queue; +using std::set; +using std::vector; struct wp_worker;