Skip to content

Commit 463b61d

Browse files
committed
fix compiler error
1 parent e875afc commit 463b61d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mayaHydra/mayaPlugin/renderOverride.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2396,7 +2396,7 @@ void MtohRenderOverride::_PickByRegion(
23962396
outHits.reserve(outHits.size() + tempHits.size());
23972397
// Insert all hits from tempHits into outHits
23982398
for (const auto& hit : tempHits) {
2399-
outHits.emplace_back((0, hit));
2399+
outHits.emplace_back(0, hit);
24002400
}
24012401
}
24022402
#endif

0 commit comments

Comments
 (0)