From: Chris Koeritz Date: Fri, 2 Apr 2021 20:28:17 +0000 (-0400) Subject: working towards macos builds working again X-Git-Tag: 2.140.128~1^2~29 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=a2b1ed6e1a541841d05729c8428226f1d4e015a0 working towards macos builds working again --- diff --git a/nucleus/library/filesystem/heavy_file_ops.h b/nucleus/library/filesystem/heavy_file_ops.h index debb5773..d728c43b 100644 --- a/nucleus/library/filesystem/heavy_file_ops.h +++ b/nucleus/library/filesystem/heavy_file_ops.h @@ -81,14 +81,14 @@ public: //!< method can be exported for use by shared libs. static basis::outcome copy_file(const basis::astring &source, const basis::astring &destination, - int copy_chunk_factor = copy_chunk_factor()); + int copy_chunk_factor = heavy_file_operations::copy_chunk_factor()); //!< copies a file from the "source" location to the "destination". /*!< the outcomes could be from this class or from common::outcomes. the "copy_chunk_factor" is the read buffer size to use while copying. */ static basis::outcome write_file_chunk(const basis::astring &target, double byte_start, const basis::byte_array &chunk, bool truncate = true, - int copy_chunk_factor = copy_chunk_factor()); + int copy_chunk_factor = heavy_file_operations::copy_chunk_factor()); //!< stores a chunk of bytes into the "target" file. /*!< writes the content stored in "chunk" into the file "target" at the position "byte_start". the entire "chunk" will be used, which means the