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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-28 17:20:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-28 17:28:19 +0300
commit54aa834b7d7cd60544e5e56c962f64bd48a3c400 (patch)
tree9e13d92e145e365e1a6a077cedb73da73c6cdacc /source/blender/alembic/intern/abc_exporter.h
parentbf75b248180e5f7411fa27cdc89d7d1f07f7735c (diff)
Cleanup: fix compiler warnings on macOS / clang.
Diffstat (limited to 'source/blender/alembic/intern/abc_exporter.h')
-rw-r--r--source/blender/alembic/intern/abc_exporter.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/alembic/intern/abc_exporter.h b/source/blender/alembic/intern/abc_exporter.h
index 0a32a28adca..c891824a114 100644
--- a/source/blender/alembic/intern/abc_exporter.h
+++ b/source/blender/alembic/intern/abc_exporter.h
@@ -93,7 +93,6 @@ class AbcExporter {
unsigned int m_trans_sampling_index, m_shape_sampling_index;
Scene *m_scene;
- ViewLayer *m_view_layer;
Depsgraph *m_depsgraph;
ArchiveWriter *m_writer;
@@ -105,8 +104,7 @@ class AbcExporter {
std::vector<AbcObjectWriter *> m_shapes;
public:
- AbcExporter(Main *bmain, Scene *scene, ViewLayer *view_layer,
- Depsgraph *depsgraph,
+ AbcExporter(Main *bmain, Scene *scene, Depsgraph *depsgraph,
const char *filename, ExportSettings &settings);
~AbcExporter();