Skip to content

Commit

Permalink
Merge pull request #2210 from nvmkuruc/usdnoncopyable
Browse files Browse the repository at this point in the history
Replace boost::noncopyable with explicit deletion of copy constructor and assignment operator in pxr/usd/usd

(Internal change: 2268278)
  • Loading branch information
pixar-oss committed Mar 21, 2023
2 parents a328724 + 67b6ec3 commit 5ec5042
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pxr/usd/usd/schemaRegistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ using UsdSchemaVersion = unsigned int;
/// classes, to enumerate all properties for a given schema class, and finally
/// to provide fallback values for unauthored built-in properties.
///
class UsdSchemaRegistry : public TfWeakBase, boost::noncopyable {
class UsdSchemaRegistry : public TfWeakBase {
UsdSchemaRegistry(const UsdSchemaRegistry&) = delete;
UsdSchemaRegistry& operator=(const UsdSchemaRegistry&) = delete;
public:
using TokenToTokenVectorMap =
std::unordered_map<TfToken, TfTokenVector, TfHash>;
Expand Down

0 comments on commit 5ec5042

Please sign in to comment.