Skip to content

Commit 3d43cf9

Browse files
authored
Fix format
1 parent 680d49d commit 3d43cf9

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

modules/core/task/include/task.hpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include <stdexcept>
1616
#include <string>
1717

18-
1918
namespace ppc::core {
2019

2120
/// @brief Represents the type of task (parallelization technology).
@@ -200,9 +199,9 @@ class Task {
200199
}
201200

202201
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();
202+
auto duration = std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now() -
203+
tmp_time_point_)
204+
.count();
206205
auto diff = static_cast<double>(duration) * 1e-9;
207206

208207
std::stringstream err_msg;

0 commit comments

Comments
 (0)