Fix clang build.

This commit is contained in:
Nikolai Kochetov 2020-05-20 17:04:24 +03:00
parent 7ba5419190
commit fcf58fa4a1

View File

@ -549,10 +549,10 @@ void PipelineExecutor::executeSingleThread(size_t thread_num, size_t num_threads
auto & context = executor_contexts[thread_num];
LOG_TRACE(log, std::fixed << std::setprecision(3)
<< "Thread finished."
<< " Total time: " << (context.total_time_ns / 1e9) << " sec."
<< " Execution time: " << (context.execution_time_ns / 1e9) << " sec."
<< " Processing time: " << (context.processing_time_ns / 1e9) << " sec."
<< " Wait time: " << (context.wait_time_ns / 1e9) << " sec.");
<< " Total time: " << (context->total_time_ns / 1e9) << " sec."
<< " Execution time: " << (context->execution_time_ns / 1e9) << " sec."
<< " Processing time: " << (context->processing_time_ns / 1e9) << " sec."
<< " Wait time: " << (context->wait_time_ns / 1e9) << " sec.");
#endif
}