starting to work on headless support

This commit is contained in:
2025-06-24 07:10:02 +02:00
parent c474648da0
commit 14dee628c4
4 changed files with 38 additions and 19 deletions

View File

@@ -7,9 +7,7 @@ namespace mlx
{
public:
UUID();
UUID(std::uint64_t uuid);
inline operator std::uint64_t() const { return m_uuid; }
inline operator std::uint64_t() const noexcept { return m_uuid; }
private:
std::uint64_t m_uuid;