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:
authorCampbell Barton <ideasman42@gmail.com>2021-04-23 04:32:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-23 04:32:32 +0300
commit0817763624dbcb095dd172910cc39144f840e19c (patch)
tree01ae54c6b64b1ff8203b970b4778cdfbc10fecbd
parenta23e49c696cf9ac66ecb9c1ad009d38b0a5e9f9f (diff)
Fix for building with MSVC
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval_runtime_backup.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup.cc b/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup.cc
index 0064240db23..7893e8c64c1 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup.cc
@@ -33,7 +33,7 @@ namespace blender::deg {
RuntimeBackup::RuntimeBackup(const Depsgraph *depsgraph)
: have_backup(false),
- id_data({.py_instance = nullptr}),
+ id_data({nullptr}),
animation_backup(depsgraph),
scene_backup(depsgraph),
sound_backup(depsgraph),