Skip to content

Commit

Permalink
Replace boost::optional with std::optional in usdSkel
Browse files Browse the repository at this point in the history
  • Loading branch information
nvmkuruc committed Sep 6, 2023
1 parent d80065d commit 126a2cf
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 126a2cf

Please sign in to comment.