Skip to content

Commit

Permalink
Updated vendored libaries to coax the Windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Dec 2, 2023
1 parent 7334245 commit 6f0e6b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: alabaster.base
Title: Save Bioconductor Objects To File
Version: 1.3.4
Date: 2023-11-30
Version: 1.3.5
Date: 2023-12-01
Authors@R: person("Aaron", "Lun", role=c("aut", "cre"), email="[email protected]")
License: MIT + file LICENSE
Description:
Expand Down
2 changes: 1 addition & 1 deletion inst/include/ritsuko/hdf5/open.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ inline H5::H5File open_file(const std::filesystem::path& path) try {
if (!std::filesystem::exists(path)) {
throw std::runtime_error("no file is present at '" + path.string() + "'");
}
return H5::H5File(path, H5F_ACC_RDONLY);
return H5::H5File(path.c_str(), H5F_ACC_RDONLY);
} catch (H5::Exception& e) {
throw std::runtime_error("failed to open the HDF5 file at '" + path.string() + "'; " + e.getDetailMsg());
}
Expand Down
1 change: 1 addition & 0 deletions inst/include/takane/single_cell_experiment.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "byteme/byteme.hpp"

#include "summarized_experiment.hpp"
#include "ranged_summarized_experiment.hpp"

#include <filesystem>
#include <stdexcept>
Expand Down

0 comments on commit 6f0e6b7

Please sign in to comment.