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@blender.org>2020-09-08 12:45:31 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-08 12:45:31 +0300
commit5becbf97192e3759fe36b12e4a03f7c7c88e682d (patch)
tree049120f6b1b7d29f4beeed5464d031113a6388c3 /source/blender/io/usd/intern/usd_writer_abstract.h
parent63dc72c35215d38c437a5d20a8dc8f6e25e1fc8c (diff)
Cleanup: Refactor USD Exporter, make parameter const
Follow-up of 63dc72c3521, make parameter `const`. No functional changes.
Diffstat (limited to 'source/blender/io/usd/intern/usd_writer_abstract.h')
-rw-r--r--source/blender/io/usd/intern/usd_writer_abstract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/usd/intern/usd_writer_abstract.h b/source/blender/io/usd/intern/usd_writer_abstract.h
index f702768f734..88df7cb1cc6 100644
--- a/source/blender/io/usd/intern/usd_writer_abstract.h
+++ b/source/blender/io/usd/intern/usd_writer_abstract.h
@@ -79,7 +79,7 @@ class USDAbstractWriter : public AbstractHierarchyWriter {
/* Turn `prim` into an instance referencing `context.original_export_path`.
* Return true when the instancing was succesful, false otherwise. */
- virtual bool mark_as_instance(HierarchyContext &context, const pxr::UsdPrim &prim);
+ virtual bool mark_as_instance(const HierarchyContext &context, const pxr::UsdPrim &prim);
};
} // namespace usd