We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 680d49d commit 3d43cf9Copy full SHA for 3d43cf9
1 file changed
modules/core/task/include/task.hpp
@@ -15,7 +15,6 @@
15
#include <stdexcept>
16
#include <string>
17
18
-
19
namespace ppc::core {
20
21
/// @brief Represents the type of task (parallelization technology).
@@ -200,9 +199,9 @@ class Task {
200
199
}
201
202
if (str == "PostProcessing") {
203
- auto duration = std::chrono::duration_cast<std::chrono::nanoseconds>(
204
- std::chrono::high_resolution_clock::now() - tmp_time_point_)
205
- .count();
+ auto duration = std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now() -
+ tmp_time_point_)
+ .count();
206
auto diff = static_cast<double>(duration) * 1e-9;
207
208
std::stringstream err_msg;
0 commit comments