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:
authorJeroen Bakker <jeroen@blender.org>2021-02-26 17:36:04 +0300
committerJeroen Bakker <jeroen@blender.org>2021-02-26 17:36:04 +0300
commit6ccfb9e0ea6e4e81e452181596278fb0b8e113d2 (patch)
tree270f327d380abe3241fbb21a369d894ac422fa3f
parent87ace4682761bdeaa8f18ae12a186dbfb83d4e04 (diff)
Fix: Compile issue Windows.
-rw-r--r--source/blender/blenkernel/intern/cryptomatte.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/cryptomatte.cc b/source/blender/blenkernel/intern/cryptomatte.cc
index 89db7a93501..39d02d43baa 100644
--- a/source/blender/blenkernel/intern/cryptomatte.cc
+++ b/source/blender/blenkernel/intern/cryptomatte.cc
@@ -253,7 +253,7 @@ static constexpr int skip_whitespaces_len_(blender::StringRef ref)
int skip_len = 0;
while (skip_len < ref.size()) {
char front = ref[skip_len];
- if (!std::isspace<char>(front, std::locale::classic())) {
+ if (front != ' ') {
break;
}
skip_len++;