From fc7a7063c2bf3972ebe62c0e1caa883921a968c3 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 23 Aug 2024 17:08:52 -0500 Subject: [PATCH] fix --- repertory/librepertory/include/types/remote.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repertory/librepertory/include/types/remote.hpp b/repertory/librepertory/include/types/remote.hpp index 835c3b37..3ebaf84c 100644 --- a/repertory/librepertory/include/types/remote.hpp +++ b/repertory/librepertory/include/types/remote.hpp @@ -68,7 +68,7 @@ enum class open_flags : std::uint32_t { #if defined(__GNUG__) __attribute__((unused)) #endif // defined(__GNUG__) -[[nodiscard]] inline auto +inline auto operator|(const open_flags &flag_1, const open_flags &flag_2) -> open_flags { using flag_t = std::underlying_type_t; return static_cast(static_cast(flag_1) | @@ -87,7 +87,7 @@ operator|=(open_flags &flag_1, const open_flags &flag_2) -> open_flags & { #if defined(__GNUG__) __attribute__((unused)) #endif // defined(__GNUG__) -[[nodiscard]] inline auto +inline auto operator&(const open_flags &flag_1, const open_flags &flag_2) -> open_flags { using flag_t = std::underlying_type_t; return static_cast(static_cast(flag_1) &