Skip to content

Commit

Permalink
Use references with strings
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad0x00 committed Dec 20, 2021
1 parent bac357c commit ead5be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RResolver/BloomFilters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ loadReads(const std::vector<std::string>& readFilepaths, int r)
i++;
}

for (const auto path : readFilepaths) {
for (const auto& path : readFilepaths) {
uint64_t currentReadCount = 0;
uint64_t totalReadCount = 0;
size_t readSizesNum = ReadSize::readSizes.size();
Expand Down

0 comments on commit ead5be4

Please sign in to comment.