File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ ColumnLimit: 120
55UseTab : Never
66QualifierAlignment : Left
77PointerAlignment : Right
8+ ReferenceAlignment : Right
9+ SortUsingDeclarations : LexicographicNumeric
810InsertNewlineAtEOF : true
11+ LambdaBodyIndentation : OuterScope
12+ MaxEmptyLinesToKeep : 1
913KeepEmptyLines :
14+ AtStartOfFile : false
15+ AtStartOfBlock : false
1016 AtEndOfFile : false
17+ LineEnding : LF
Original file line number Diff line number Diff line change @@ -20,15 +20,12 @@ ppc::core::Perf::Perf(const std::shared_ptr<Task>& task_ptr) : task_(task_ptr) {
2020void ppc::core::Perf::PipelineRun (const PerfAttr& perf_attr) {
2121 perf_results_.type_of_running = PerfResults::TypeOfRunning::kPipeline ;
2222
23- CommonRun (
24- perf_attr,
25- [&]() {
26- task_->Validation ();
27- task_->PreProcessing ();
28- task_->Run ();
29- task_->PostProcessing ();
30- },
31- perf_results_);
23+ CommonRun (perf_attr, [&]() {
24+ task_->Validation ();
25+ task_->PreProcessing ();
26+ task_->Run ();
27+ task_->PostProcessing ();
28+ }, perf_results_);
3229}
3330
3431void ppc::core::Perf::TaskRun (const PerfAttr& perf_attr) {
You can’t perform that action at this time.
0 commit comments