Skip to content

Commit e16b65d

Browse files
committed
Include missing utility headers in performance test files and runners module; remove redundant include from runners.cpp.
1 parent daac04d commit e16b65d

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

modules/core/runners/include/runners.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
#include <gtest/gtest.h>
44

5+
#include <memory>
6+
#include <utility>
7+
58
namespace ppc::core {
69

710
class UnreadMessagesDetector : public ::testing::EmptyTestEventListener {

modules/core/runners/src/runners.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#include <iostream>
1111
#include <memory>
1212
#include <string>
13-
#include <utility>
1413

1514
#include "core/util/include/util.hpp"
1615
#include "oneapi/tbb/global_control.h"

tasks/example_processes/tests/performance/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include <gtest/gtest.h>
22

33
#include "core/util/include/perf_test_util.hpp"
4+
#include "core/util/include/util.hpp"
45
#include "example_processes/common/include/common.hpp"
56
#include "example_processes/mpi/include/ops_mpi.hpp"
67
#include "example_processes/seq/include/ops_seq.hpp"

tasks/example_threads/tests/performance/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include <gtest/gtest.h>
22

33
#include "core/util/include/perf_test_util.hpp"
4+
#include "core/util/include/util.hpp"
45
#include "example_threads/all/include/ops_all.hpp"
56
#include "example_threads/common/include/common.hpp"
67
#include "example_threads/omp/include/ops_omp.hpp"

0 commit comments

Comments
 (0)