File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -962,7 +962,7 @@ struct PrintOffset {
962
962
std::vector<PrintOffset> printOffsets;
963
963
std::vector<std::string> printedBlocks;
964
964
965
- int getPrintOffsetIdx (const std::vector<PrintOffset> &printOffsets, const std:: string &value) {
965
+ int getPrintOffsetIdx (const std::string &value) {
966
966
for (size_t i = 0 ; i < printOffsets.size () ; i++) {
967
967
if (printOffsets[i].entry == value)
968
968
return (int )i;
@@ -1064,7 +1064,7 @@ void printTransposed(const PCM::RawPMUConfigs& curPMUConfigs,
1064
1064
const auto & fixedEvents = typeEvents.second .fixed ;
1065
1065
1066
1066
PrintOffset printOffset{type, 0 , 0 };
1067
- const auto print_idx = getPrintOffsetIdx (printOffsets, type);
1067
+ const auto print_idx = getPrintOffsetIdx (type);
1068
1068
1069
1069
if (outputType == Header1 || outputType == Header21) {
1070
1070
if (print_idx != -1 )
You can’t perform that action at this time.
0 commit comments