Skip to content

Commit

Permalink
blueprint better
Browse files Browse the repository at this point in the history
  • Loading branch information
geohot committed Feb 3, 2020
1 parent 6331941 commit 352ed28
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions LibCarla/source/carla/client/BlueprintLibrary.h
Expand Up @@ -22,8 +22,7 @@ namespace client {
/// @todo Works as a list but its actually a map. We should assess the use
/// cases and reconsider this implementation.
class BlueprintLibrary
: public EnableSharedFromThis<BlueprintLibrary>,
private NonCopyable {
: public EnableSharedFromThis<BlueprintLibrary> {
using map_type = std::unordered_map<std::string, ActorBlueprint>;
public:

Expand All @@ -37,8 +36,8 @@ namespace client {

explicit BlueprintLibrary(const std::vector<rpc::ActorDefinition> &blueprints);

//BlueprintLibrary(BlueprintLibrary &&) = default;
//BlueprintLibrary &operator=(BlueprintLibrary &&) = default;
BlueprintLibrary(BlueprintLibrary &&) = default;
BlueprintLibrary &operator=(BlueprintLibrary &&) = default;

/// Filters a list of ActorBlueprint with id or tags matching
/// @a wildcard_pattern.
Expand Down

0 comments on commit 352ed28

Please sign in to comment.