updated build system
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2024-08-31 08:42:52 -05:00
parent 20b953f0a3
commit a15523c375
3 changed files with 15 additions and 15 deletions

View File

@ -19,15 +19,15 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
#ifndef FIFTHGRID_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ #ifndef REPERTORY_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_
#define FIFTHGRID_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ #define REPERTORY_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_
#include "utils/config.hpp" #include "utils/config.hpp"
#include "utils/types/file/i_file.hpp" #include "utils/types/file/i_file.hpp"
#include "utils/types/file/i_fs_item.hpp" #include "utils/types/file/i_fs_item.hpp"
namespace fifthgrid::utils::file { namespace repertory::utils::file {
struct i_directory : public i_fs_item { struct i_directory : public i_fs_item {
using fs_directory_t = std::unique_ptr<i_directory>; using fs_directory_t = std::unique_ptr<i_directory>;
using fs_file_t = i_file::fs_file_t; using fs_file_t = i_file::fs_file_t;
@ -74,6 +74,6 @@ protected:
auto operator=(const i_directory &) noexcept -> i_directory & = default; auto operator=(const i_directory &) noexcept -> i_directory & = default;
}; };
} // namespace fifthgrid::utils::file } // namespace repertory::utils::file
#endif // FIFTHGRID_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ #endif // REPERTORY_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_

View File

@ -19,14 +19,14 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
#ifndef FIFTHGRID_INCLUDE_TYPES_FILE_I_FILE_HPP_ #ifndef REPERTORY_INCLUDE_TYPES_FILE_I_FILE_HPP_
#define FIFTHGRID_INCLUDE_TYPES_FILE_I_FILE_HPP_ #define REPERTORY_INCLUDE_TYPES_FILE_I_FILE_HPP_
#include "utils/config.hpp" #include "utils/config.hpp"
#include "utils/types/file/i_fs_item.hpp" #include "utils/types/file/i_fs_item.hpp"
namespace fifthgrid::utils::file { namespace repertory::utils::file {
struct i_file : public i_fs_item { struct i_file : public i_fs_item {
using fs_file_t = std::unique_ptr<i_file>; using fs_file_t = std::unique_ptr<i_file>;
@ -88,6 +88,6 @@ protected:
auto operator=(const i_file &) noexcept -> i_file & = default; auto operator=(const i_file &) noexcept -> i_file & = default;
}; };
} // namespace fifthgrid::utils::file } // namespace repertory::utils::file
#endif // FIFTHGRID_INCLUDE_TYPES_FILE_I_FILE_HPP_ #endif // REPERTORY_INCLUDE_TYPES_FILE_I_FILE_HPP_

View File

@ -19,14 +19,14 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
#ifndef FIFTHGRID_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ #ifndef REPERTORY_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_
#define FIFTHGRID_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ #define REPERTORY_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_
#include "utils/config.hpp" #include "utils/config.hpp"
#include "utils/string.hpp" #include "utils/string.hpp"
namespace fifthgrid::utils::file { namespace repertory::utils::file {
enum class time_type { enum class time_type {
accessed, accessed,
created, created,
@ -106,6 +106,6 @@ protected:
auto operator=(const i_fs_item &) noexcept -> i_fs_item & = default; auto operator=(const i_fs_item &) noexcept -> i_fs_item & = default;
}; };
} // namespace fifthgrid::utils::file } // namespace repertory::utils::file
#endif // FIFTHGRID_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ #endif // REPERTORY_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_