From cf901b11b0395f180b9102aa1ca2f7de9f36fb47 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 25 Mar 2025 13:00:51 -0500 Subject: [PATCH] cleanup --- repertory/librepertory/include/platform/unix_platform.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repertory/librepertory/include/platform/unix_platform.hpp b/repertory/librepertory/include/platform/unix_platform.hpp index a2595aa8..95dcecf6 100644 --- a/repertory/librepertory/include/platform/unix_platform.hpp +++ b/repertory/librepertory/include/platform/unix_platform.hpp @@ -60,12 +60,12 @@ private: public: [[nodiscard]] auto get_mount_state(json &mount_state) -> bool; - [[nodiscard]] auto grab_lock(std::uint8_t retry_count = 30u) -> lock_result; + [[nodiscard]] auto grab_lock(std::uint8_t retry_count = 30U) -> lock_result; void release(); [[nodiscard]] auto set_mount_state(bool active, - const std::string &mount_location, int pid) + std::string_view mount_location, int pid) -> bool; };