Skip to content

Commit 41c8365

Browse files
committed
Address clang-tidy remarks
1 parent 84b9723 commit 41c8365

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

modules/core/task/src/task.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include <chrono>
44
#include <cstddef>
5+
#include <exception>
56
#include <iomanip>
67
#include <iostream>
78
#include <sstream>
@@ -76,7 +77,7 @@ void ppc::core::Task::InternalOrderTest(const std::string& str) {
7677

7778
ppc::core::Task::~Task() {
7879
if (functions_order_ != right_functions_order_) {
79-
std::cerr << "ORDER OF FUNCTIONS IS NOT RIGHT: Task functions order is invalid." << std::endl;
80+
std::cerr << "ORDER OF FUNCTIONS IS NOT RIGHT: Task functions order is invalid\n";
8081
std::terminate();
8182
}
8283
functions_order_.clear();

0 commit comments

Comments
 (0)