From aac056237d763c21db7776fdc432b2863a0c64cc Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 11 Feb 2025 08:43:29 -0600 Subject: [PATCH] refactor --- repertory/librepertory/include/types/repertory.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/repertory/librepertory/include/types/repertory.hpp b/repertory/librepertory/include/types/repertory.hpp index 824cf781..7a9d99e7 100644 --- a/repertory/librepertory/include/types/repertory.hpp +++ b/repertory/librepertory/include/types/repertory.hpp @@ -43,7 +43,8 @@ constexpr const auto max_orphaned_file_retention_days{std::uint16_t(31U)}; constexpr const auto max_ring_buffer_file_size{std::uint16_t(1024U)}; constexpr const auto max_s3_object_name_length{1024U}; constexpr const auto min_cache_size_bytes{ - std::uint64_t(100UL * 1024UL * 1024UL)}; + std::uint64_t(100UL * 1024UL * 1024UL), +}; constexpr const auto min_download_timeout_secs{std::uint8_t(5U)}; constexpr const auto min_online_check_retry_secs{std::uint16_t(15U)}; constexpr const auto min_orphaned_file_retention_days{std::uint16_t(1U)};