diff --git a/include/uuid.h b/include/uuid.h index b1563b0..07a46b8 100644 --- a/include/uuid.h +++ b/include/uuid.h @@ -272,16 +272,16 @@ namespace uuids }; template - constexpr CharT empty_guid[37] = "00000000-0000-0000-0000-000000000000"; + inline constexpr CharT empty_guid[37] = "00000000-0000-0000-0000-000000000000"; template <> - constexpr wchar_t empty_guid[37] = L"00000000-0000-0000-0000-000000000000"; + inline constexpr wchar_t empty_guid[37] = L"00000000-0000-0000-0000-000000000000"; template - constexpr CharT guid_encoder[17] = "0123456789abcdef"; + inline constexpr CharT guid_encoder[17] = "0123456789abcdef"; template <> - constexpr wchar_t guid_encoder[17] = L"0123456789abcdef"; + inline constexpr wchar_t guid_encoder[17] = L"0123456789abcdef"; } // --------------------------------------------------------------------------------------------------------------------------