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:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-02-14 19:32:55 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-06 17:03:59 +0300
commit56cfd3d5a7d334aa1c993144458515ae2a5e34b5 (patch)
tree6de108a9bea816d3b3011da07c8fd0446192f0f2 /source/blender/alembic/intern/abc_exporter.cc
parentae76a90593fb03187789e29676f589adfd5294ea (diff)
Alembic: Removed AbcTransformWriter::m_parent
It was set, but never read anywhere.
Diffstat (limited to 'source/blender/alembic/intern/abc_exporter.cc')
-rw-r--r--source/blender/alembic/intern/abc_exporter.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_exporter.cc b/source/blender/alembic/intern/abc_exporter.cc
index 20ca40c3570..d98ebbaafd1 100644
--- a/source/blender/alembic/intern/abc_exporter.cc
+++ b/source/blender/alembic/intern/abc_exporter.cc
@@ -452,7 +452,6 @@ void AbcExporter::createTransformWriter(Object *ob, Object *parent, Object *dupl
if (parent_xform) {
m_xforms[name] = new AbcTransformWriter(ob, parent_xform->alembicXform(), parent_xform, m_trans_sampling_index, m_settings);
- m_xforms[name]->setParent(parent);
}
else {
m_xforms[name] = new AbcTransformWriter(ob, m_writer->archive().getTop(), NULL, m_trans_sampling_index, m_settings);