Skip to content

Commit 2339067

Browse files
committed
fix 20
1 parent 5c71937 commit 2339067

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

modules/task/include/task.hpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22

33
#include <omp.h>
44

5-
#include <algorithm>
65
#include <array>
76
#include <chrono>
87
#include <cstdint>
98
#include <cstdlib>
10-
#include <exception>
119
#include <fstream>
12-
#include <functional>
1310
#include <iomanip>
1411
#include <iostream>
1512
#include <memory>
@@ -18,7 +15,6 @@
1815
#include <string>
1916
#include <util/include/util.hpp>
2017
#include <utility>
21-
#include <vector>
2218

2319
namespace ppc::task {
2420

@@ -259,8 +255,8 @@ class Task {
259255
virtual bool PostProcessingImpl() = 0;
260256

261257
private:
262-
InType input_;
263-
OutType output_;
258+
InType input_{};
259+
OutType output_{};
264260
StateOfTesting state_of_testing_ = kFunc;
265261
TypeOfTask type_of_task_ = kUnknown;
266262
StatusOfTask status_of_task_ = kEnabled;

0 commit comments

Comments
 (0)