Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
David Gichev committed Jun 17, 2024
1 parent 304badd commit 60ad244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/silo/preprocessing/preprocessing_database.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PreprocessingDatabase {
ZstdTable generateSequenceTableViaFile(
const std::string& table_name,
const std::string& reference_sequence,
std::filesystem::path file_path
const std::filesystem::path& file_path
);

ZstdTable generateSequenceTableFromFasta(
Expand Down
2 changes: 1 addition & 1 deletion src/silo/preprocessing/preprocessing_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ preprocessing::Partitions PreprocessingDatabase::getPartitionDescriptor() {
ZstdTable PreprocessingDatabase::generateSequenceTableViaFile(
const std::string& table_name,
const std::string& reference_sequence,
const std::filesystem::path file_path
const std::filesystem::path& file_path
) {
const auto file_stem = file_path.stem().string();
for (const auto& entry : std::filesystem::directory_iterator(file_path.parent_path())) {
Expand Down

0 comments on commit 60ad244

Please sign in to comment.