Skip to content

Commit 140753b

Browse files
authored
remove unwanted const (#1893)
1 parent 4fa5369 commit 140753b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/render_delegate/render_delegate.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,10 +790,10 @@ void HdArnoldRenderDelegate::_ParseDelegateRenderProducts(const VtValue& value)
790790
if (!value.IsHolding<DataType>()) {
791791
return;
792792
}
793-
const auto &products = value.UncheckedGet<DataType>();
793+
auto products = value.UncheckedGet<DataType>();
794794
// For Render Delegate products, we want to eventually create arnold drivers
795795
// during batch rendering #1422
796-
for (const auto& productIter : products) {
796+
for (auto& productIter : products) {
797797
HdArnoldDelegateRenderProduct product;
798798
const auto* productType = TfMapLookupPtr(productIter, _tokens->productType);
799799

0 commit comments

Comments
 (0)