Skip to content

Commit

Permalink
Fix PropertyAttributeView forEachProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Nov 13, 2023
1 parent 52b53ba commit d18af85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CesiumGltf/include/CesiumGltf/PropertyAttributeView.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ class PropertyAttributeView {
forEachProperty(const MeshPrimitive& primitive, Callback&& callback) const {
for (const auto& property : this->_pClass->properties) {
getPropertyView(
property.first,
primitive,
property.first,
std::forward<Callback>(callback));
}
}
Expand Down

0 comments on commit d18af85

Please sign in to comment.