Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Yi Ren committed Feb 13, 2025
1 parent b4ec7e8 commit 46fe161
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/models/extra_outputs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ void ExtraOutputs::Update() {

void ExtraOutputs::RegisterOutputs() {
for (size_t i = extra_outputs_start_; i < state_.output_names_.size(); ++i) {
state_.outputs_[i] = (
output_ortvalues_[state_.output_names_[i]] = std::unique_ptr<OrtValue>(state_.outputs_[i])
).get();
state_.outputs_[i] = (output_ortvalues_[state_.output_names_[i]] = std::unique_ptr<OrtValue>(state_.outputs_[i])).get();
}
}

Expand Down

0 comments on commit 46fe161

Please sign in to comment.