Skip to content

Commit

Permalink
remove unwanted const (#1893)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpichard authored Mar 19, 2024
1 parent 4fa5369 commit 140753b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/render_delegate/render_delegate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -790,10 +790,10 @@ void HdArnoldRenderDelegate::_ParseDelegateRenderProducts(const VtValue& value)
if (!value.IsHolding<DataType>()) {
return;
}
const auto &products = value.UncheckedGet<DataType>();
auto products = value.UncheckedGet<DataType>();
// For Render Delegate products, we want to eventually create arnold drivers
// during batch rendering #1422
for (const auto& productIter : products) {
for (auto& productIter : products) {
HdArnoldDelegateRenderProduct product;
const auto* productType = TfMapLookupPtr(productIter, _tokens->productType);

Expand Down

0 comments on commit 140753b

Please sign in to comment.