Skip to content

Commit 46b713e

Browse files
havesscopybara-github
authored andcommitted
Remove pedantic designated initializers in USD parsing.
PiperOrigin-RevId: 784544836 Change-Id: Ie36136b2a0b8105ccb4a4679883120638ec80699
1 parent e92ce30 commit 46b713e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/experimental/usd/kinematic_tree.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ ExtractedPrims ExtractPrims(pxr::UsdStageRefPtr stage) {
177177
it.PruneChildren();
178178
}
179179
}
180-
return {.nodes = std::move(nodes), .joints = std::move(joints)};
180+
return {std::move(nodes), std::move(joints)};
181181
}
182182

183183
std::unique_ptr<Node> BuildKinematicTree(const pxr::UsdStageRefPtr stage) {

0 commit comments

Comments
 (0)