updated build system
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2024-08-02 14:02:14 -05:00
parent 4a2acf99a7
commit d6b2c1d81e
3 changed files with 18 additions and 15 deletions

View File

@@ -87,8 +87,8 @@ auto file::move_to(std::filesystem::path new_path) -> bool {
return false;
}
auto file::read(unsigned char *data, std::size_t to_read, std::uint64_t offset,
std::size_t *total_read) -> bool {
auto file::read_(unsigned char *data, std::size_t to_read, std::uint64_t offset,
std::size_t *total_read) -> bool {
static constexpr const std::string_view function_name{
static_cast<const char *>(__FUNCTION__),
};
@@ -145,9 +145,9 @@ auto file::truncate(std::size_t size) -> bool {
return not error_;
}
auto file::write(const typename data_buffer::value_type *data,
std::size_t to_write, std::size_t offset,
std::size_t *total_written) -> bool {
auto file::write_(const typename data_buffer::value_type *data,
std::size_t to_write, std::size_t offset,
std::size_t *total_written) -> bool {
static constexpr const std::string_view function_name{
static_cast<const char *>(__FUNCTION__),
};