Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-09-18 14:36:20 +0300
committerJacques Lucke <jacques@blender.org>2021-09-18 14:36:20 +0300
commit2618df7d03bffff1ea2a750290d35ef4b6a8c072 (patch)
tree2c262c1ee231dc34d4e218b693c19e28b43bd506
parent136e357d8dd541eeabc3f77dce8079d807bce8b4 (diff)
Cleanup: add missing includes
-rw-r--r--source/blender/blenlib/intern/uuid.cc2
1 files changed, 2 insertions, 0 deletions
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 <cstdio>
#include <cstring>
+#include <ctime>
#include <random>
+#include <string>
/* 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");