Skip to content

Commit

Permalink
Remove invalid? const qualifier of the rvalue ref arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
syoyo committed Oct 9, 2024
1 parent b098735 commit e192242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usdGeom.hh
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class GeomPrimvar {
_indices = indices;
}

void set_default_indices(const std::vector<int32_t> &&indices) {
void set_default_indices(std::vector<int32_t> &&indices) {
_indices = std::move(indices);
}

Expand Down

0 comments on commit e192242

Please sign in to comment.