We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c71937 commit 2339067Copy full SHA for 2339067
modules/task/include/task.hpp
@@ -2,14 +2,11 @@
2
3
#include <omp.h>
4
5
-#include <algorithm>
6
#include <array>
7
#include <chrono>
8
#include <cstdint>
9
#include <cstdlib>
10
-#include <exception>
11
#include <fstream>
12
-#include <functional>
13
#include <iomanip>
14
#include <iostream>
15
#include <memory>
@@ -18,7 +15,6 @@
18
#include <string>
19
16
#include <util/include/util.hpp>
20
17
#include <utility>
21
-#include <vector>
22
23
namespace ppc::task {
24
@@ -259,8 +255,8 @@ class Task {
259
255
virtual bool PostProcessingImpl() = 0;
260
256
261
257
private:
262
- InType input_;
263
- OutType output_;
258
+ InType input_{};
+ OutType output_{};
264
StateOfTesting state_of_testing_ = kFunc;
265
TypeOfTask type_of_task_ = kUnknown;
266
StatusOfTask status_of_task_ = kEnabled;
0 commit comments