We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fa5369 commit 140753bCopy full SHA for 140753b
libs/render_delegate/render_delegate.cpp
@@ -790,10 +790,10 @@ void HdArnoldRenderDelegate::_ParseDelegateRenderProducts(const VtValue& value)
790
if (!value.IsHolding<DataType>()) {
791
return;
792
}
793
- const auto &products = value.UncheckedGet<DataType>();
+ auto products = value.UncheckedGet<DataType>();
794
// For Render Delegate products, we want to eventually create arnold drivers
795
// during batch rendering #1422
796
- for (const auto& productIter : products) {
+ for (auto& productIter : products) {
797
HdArnoldDelegateRenderProduct product;
798
const auto* productType = TfMapLookupPtr(productIter, _tokens->productType);
799
0 commit comments