From c30954911e6fd251b59dbcd754d39be9352423eb Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Sat, 11 Jan 2025 17:51:17 +0100 Subject: [PATCH] Try to fix building with MSVC --- Quotient/connection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quotient/connection.h b/Quotient/connection.h index fa92fab42..5fbdf2a5f 100644 --- a/Quotient/connection.h +++ b/Quotient/connection.h @@ -66,11 +66,11 @@ namespace LoginFlowTypes { } //! Predefined login flows -namespace LoginFlows +namespace #ifndef Q_MOC_RUN [[deprecated("Use login flow types and Connection::getLoginFlow() instead")]] #endif -{ + LoginFlows { inline const LoginFlow Password { LoginFlowTypes::Password }; inline const LoginFlow SSO { LoginFlowTypes::SSO }; inline const LoginFlow Token { LoginFlowTypes::Token };