Skip to content

Commit

Permalink
Merge pull request #2703 from nvmkuruc/usdskeloptional
Browse files Browse the repository at this point in the history
Replace `boost::optional` with `std::optional` in `usdSkel`

(Internal change: 2296055)
  • Loading branch information
pixar-oss committed Sep 19, 2023
2 parents c92d668 + 1f86e42 commit 8520e07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pxr/usd/usdSkel/skinningQuery.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

#include "pxr/usd/usdSkel/animMapper.h"

#include <optional>

PXR_NAMESPACE_OPEN_SCOPE

Expand Down Expand Up @@ -283,8 +284,8 @@ class UsdSkelSkinningQuery
UsdRelationship _blendShapeTargets;
UsdSkelAnimMapperRefPtr _jointMapper;
UsdSkelAnimMapperRefPtr _blendShapeMapper;
boost::optional<VtTokenArray> _jointOrder;
boost::optional<VtTokenArray> _blendShapeOrder;
std::optional<VtTokenArray> _jointOrder;
std::optional<VtTokenArray> _blendShapeOrder;
};

PXR_NAMESPACE_CLOSE_SCOPE
Expand Down

0 comments on commit 8520e07

Please sign in to comment.