Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jul 27, 2023
1 parent 14aaa9a commit 22a3b58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cooler/validation_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ inline ValidationStatusCooler is_cooler(std::string_view uri) {
throw;
}
ValidationStatusCooler s{};
s.uri = std::string{uri};
s.is_hdf5 = false;
return s;
}
Expand All @@ -61,6 +62,7 @@ inline ValidationStatusMultiresCooler is_multires_file(std::string_view uri,
throw;
}
ValidationStatusMultiresCooler s{};
s.uri = std::string{uri};
s.is_hdf5 = false;
return s;
}
Expand All @@ -79,6 +81,7 @@ inline ValidationStatusScool is_scool_file(std::string_view uri, bool validate_c
throw;
}
ValidationStatusScool s{};
s.uri = std::string{uri};
s.is_hdf5 = false;
return s;
}
Expand Down

0 comments on commit 22a3b58

Please sign in to comment.