From 1af1bc5831e71582c13b4172831cf1e2dab5b915 Mon Sep 17 00:00:00 2001 From: Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:54:45 -0800 Subject: [PATCH] Make Uuid's default constructor implicit (#6243) Co-authored-by: Anton Kolesnyk --- sdk/core/azure-core/inc/azure/core/uuid.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/azure-core/inc/azure/core/uuid.hpp b/sdk/core/azure-core/inc/azure/core/uuid.hpp index 47b94a555..1924c1a77 100644 --- a/sdk/core/azure-core/inc/azure/core/uuid.hpp +++ b/sdk/core/azure-core/inc/azure/core/uuid.hpp @@ -37,7 +37,7 @@ namespace Azure { namespace Core { */ // Nil UUID, per RFC9562, consists of all zeros: // https://www.rfc-editor.org/rfc/rfc9562.html#name-nil-uuid - constexpr explicit Uuid() : m_uuid{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} {} + constexpr Uuid() : m_uuid{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} {} /** * @brief Gets Uuid as a string.