Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove boost/noncopyable #621

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pxr/usdImaging/lib/usdImaging/collectionCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
#include "pxr/usdImaging/usdImaging/api.h"
#include "pxr/usd/usd/collectionAPI.h"

#include <boost/noncopyable.hpp>
#include <tbb/concurrent_unordered_map.h>
#include <tbb/concurrent_queue.h>
#include <unordered_map>
Expand All @@ -55,8 +54,12 @@ PXR_NAMESPACE_OPEN_SCOPE
/// As an optimization, the query that includes everything is
/// treated as a special case and given the empty id, TfToken().
///
class UsdImaging_CollectionCache : boost::noncopyable {
class UsdImaging_CollectionCache {
public:
// Disallow copies
UsdImaging_CollectionCache(const UsdImaging_CollectionCache&) = delete;
UsdImaging_CollectionCache& operator=(const UsdImaging_CollectionCache&) = delete;

/// Query is the MembershipQuery computed from a collection's state.
typedef UsdCollectionAPI::MembershipQuery Query;

Expand Down