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>2022-01-21 09:51:00 +0300
committerJeroen Bakker <jeroen@blender.org>2022-01-21 09:52:10 +0300
commit64196a6b29016892f52771947047146c6c125f3f (patch)
treed30d821a4932b33b731a835237f1ae952a5d9685
parent872dc1038c42e3d428fac5e6a425c2d788370f58 (diff)
Cleanup: struct/class mismatch.
-rw-r--r--source/blender/blenkernel/intern/idprop_serialize.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/idprop_serialize.cc b/source/blender/blenkernel/intern/idprop_serialize.cc
index 289bc39f4b5..92dce49500c 100644
--- a/source/blender/blenkernel/intern/idprop_serialize.cc
+++ b/source/blender/blenkernel/intern/idprop_serialize.cc
@@ -29,7 +29,7 @@ using namespace blender::io::serialize;
/* Forward declarations */
class IDPropertySerializer;
-class DictionaryEntryParser;
+struct DictionaryEntryParser;
static IDProperty *idprop_from_value(const DictionaryValue &value);
static const IDPropertySerializer &serializer_for(eIDPropertyType property_type);
static const IDPropertySerializer &serializer_for(StringRef idprop_typename);