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.
This commit is contained in:
Ray molenkamp 2021-01-15 12:36:03 -07:00
parent 319056679b
commit de60dc84e2
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@
#include "MEM_guardedalloc.h"
#include <cctype>
#include <cstring>
#include <iomanip>
#include <sstream>