From 3004f1ed9a3979176ec3b055c627eba88c2004f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Fri, 20 Mar 2020 22:53:22 +0100 Subject: Implement UUID handling to avoid libuuid dependency --- include/erebos/uuid.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'include/erebos') diff --git a/include/erebos/uuid.h b/include/erebos/uuid.h index 31322ea..9b615f8 100644 --- a/include/erebos/uuid.h +++ b/include/erebos/uuid.h @@ -1,7 +1,6 @@ #pragma once -#include - +#include #include namespace erebos { @@ -14,7 +13,7 @@ struct UUID bool operator==(const UUID &) const; bool operator!=(const UUID &) const; - uuid_t uuid; + std::array uuid; }; } -- cgit v1.2.3