Make Uuid's default constructor implicit (#6243)

Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
This commit is contained in:
Anton Kolesnyk 2024-11-19 16:54:45 -08:00 коммит произвёл GitHub
Родитель 8f6ea6b9b8
Коммит 1af1bc5831
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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.