Skip to content

Commit 563eb54

Browse files
committed
align << operator in Task::info()
1 parent b620135 commit 563eb54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/server/task.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ void Task::success(const std::string& result) {
4949
std::string Task::info(bool skip_duration) const {
5050
std::stringstream ss;
5151
ss << "task["
52-
<< "id=" << std::to_string(m_job_id)
53-
<< ",cmd=" << std::to_string(m_cmd);
52+
<< "id=" << std::to_string(m_job_id)
53+
<< ",cmd=" << std::to_string(m_cmd);
5454
if (!skip_duration) {
5555
ss << ",exists=" << get_pretty_duration_str_from_ms(time_ms_elapsed());
5656
}

0 commit comments

Comments
 (0)