fix
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
Scott E. Graves 2025-03-25 13:06:45 -05:00
parent cef829aa63
commit bd48bb1a35
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
namespace repertory { namespace repertory {
[[nodiscard]] auto create_lock_id(provider_type prov, [[nodiscard]] auto create_lock_id(provider_type prov,
std::string_view unique_id); std::string_view unique_id)->std::string;
} }
#if defined(_WIN32) #if defined(_WIN32)

View File

@ -24,7 +24,7 @@
#include "app_config.hpp" #include "app_config.hpp"
namespace repertory { namespace repertory {
auto create_lock_id(provider_type prov, std::string_view unique_id) { auto create_lock_id(provider_type prov, std::string_view unique_id)->std::string {
return fmt::format("{}_{}_{}", REPERTORY_DATA_NAME, return fmt::format("{}_{}_{}", REPERTORY_DATA_NAME,
app_config::get_provider_name(prov), unique_id); app_config::get_provider_name(prov), unique_id);
} }