From 2618df7d03bffff1ea2a750290d35ef4b6a8c072 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Sat, 18 Sep 2021 13:36:20 +0200 Subject: [PATCH] Cleanup: add missing includes --- source/blender/blenlib/intern/uuid.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/blenlib/intern/uuid.cc b/source/blender/blenlib/intern/uuid.cc index 7f1ec0e677b..0c381e5dcd2 100644 --- a/source/blender/blenlib/intern/uuid.cc +++ b/source/blender/blenlib/intern/uuid.cc @@ -22,7 +22,9 @@ #include #include +#include #include +#include /* Ensure the UUID struct doesn't have any padding, to be compatible with memcmp(). */ static_assert(sizeof(UUID) == 16, "expect UUIDs to be 128 bit exactly");