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
committerJeroen Bakker <jeroen@blender.org>2021-05-07 08:49:22 +0300
commitc5c35e9b476ff6e0bcbe19e65a17964c65042a3e (patch)
tree27a085f6f7befa892279147601eae9a0d2184d0e
parent47cc05471d1c046ad89b7e60f52157ca7dcda075 (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 12b841b4a1a..d148a010b76 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 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),