Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrete committed May 4, 2023
1 parent 4458ec1 commit 8b5c775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/outputs/output_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ struct VarInfo {
component_labels = {};
if (num_components == 1) {
const auto suffix = component_labels_.empty() ? "" : "_" + component_labels_[0];
component_labels = std::vector<std::string>({label + suffix})
component_labels = std::vector<std::string>({label + suffix});
} else if (component_labels_.size() == num_components) {
for (int i = 0; i < num_components; i++) {
component_labels.push_back(label + "_" + component_labels_[i]);
Expand Down

0 comments on commit 8b5c775

Please sign in to comment.