diff options
author | Alec Thomas <alec@swapoff.org> | 2015-03-04 12:33:42 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2015-03-04 12:33:42 +1100 |
commit | 348fd031a2088b24935359ea2fec0c1e9382776e (patch) | |
tree | 1b84b78677af512dfbb88f04a72b8cfd9143f44f | |
parent | b8f14f4f43209683a68e20c56917447ed9bd0a12 (diff) | |
parent | 1fe3f5d55dcfd4523d357b72716ee9c8bc9f8159 (diff) |
Merge pull request #89 from tahsmith/master
Remove user defined constructors for Entity
-rw-r--r-- | entityx/Entity.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h index af2fafb..8dd3410 100644 --- a/entityx/Entity.h +++ b/entityx/Entity.h @@ -80,15 +80,10 @@ public: */ static const Id INVALID; - Entity() {} + Entity() = default; Entity(EntityManager *manager, Entity::Id id) : manager_(manager), id_(id) {} - Entity(const Entity &other) : manager_(other.manager_), id_(other.id_) {} - - Entity &operator = (const Entity &other) { - manager_ = other.manager_; - id_ = other.id_; - return *this; - } + Entity(const Entity &other) = default; + Entity &operator = (const Entity &other) = default; /** * Check if Entity handle is invalid. |