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:
authorRay Molenkamp <github@lazydodo.com>2021-01-15 22:36:03 +0300
committerRay Molenkamp <github@lazydodo.com>2021-01-15 22:36:03 +0300
commitde60dc84e249b748105649da1a36b721e7f9f6af (patch)
tree7545d9cb02ee4deb4dcb1e64a83e54f7a6be9c69 /source/blender/blenkernel/intern/cryptomatte.cc
parent319056679b4970a2be4a18ff625cfc690dfd7e42 (diff)
Fix: Build error with MSVC 2017
BKE_cryptomatte_extract_layer_name was using std::isdigit without including <cctype> somehow only MSVC 2017 had a problem with that.
Diffstat (limited to 'source/blender/blenkernel/intern/cryptomatte.cc')
-rw-r--r--source/blender/blenkernel/intern/cryptomatte.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/cryptomatte.cc b/source/blender/blenkernel/intern/cryptomatte.cc
index 7ddc1474e09..ef7f5963bee 100644
--- a/source/blender/blenkernel/intern/cryptomatte.cc
+++ b/source/blender/blenkernel/intern/cryptomatte.cc
@@ -40,6 +40,7 @@
#include "MEM_guardedalloc.h"
+#include <cctype>
#include <cstring>
#include <iomanip>
#include <sstream>