Skip to content

Commit

Permalink
utils/worker.cpp: improved including + using
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPulec committed Mar 25, 2024
1 parent cbefa75 commit a02d606
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/utils/worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Martin Pulec <[email protected]>
*/
/*
* 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
Expand Down Expand Up @@ -35,18 +35,20 @@
* 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 <algorithm>
#include <cassert>
#include <pthread.h>
#include <queue>
#include <set>
#include <vector>

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;

Expand Down

0 comments on commit a02d606

Please sign in to comment.