diff options
Diffstat (limited to 'include/erebos')
-rw-r--r-- | include/erebos/uuid.h | 5 |
1 files changed, 2 insertions, 3 deletions
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 <uuid/uuid.h> - +#include <array> #include <string> namespace erebos { @@ -14,7 +13,7 @@ struct UUID bool operator==(const UUID &) const; bool operator!=(const UUID &) const; - uuid_t uuid; + std::array<uint8_t, 16> uuid; }; } |