Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion include/LDtkLoader/Entity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace ldtk {
Entity(const Entity&) = delete;
Entity(Entity&&) noexcept = default;
auto operator=(const Entity&) -> Entity& = delete;
auto operator=(Entity&&) -> Entity& = default;
auto operator=(Entity&&) -> Entity& = delete;

const Layer* const layer;
const IID iid;
Expand Down
2 changes: 1 addition & 1 deletion include/LDtkLoader/Enum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace ldtk {
Enum(const Enum&) = delete;
Enum(Enum&&) noexcept = default;
auto operator=(const Enum&) -> Enum& = delete;
auto operator=(Enum&&) -> Enum& = default;
auto operator=(Enum&&) -> Enum& = delete;

const std::string name;
const int uid;
Expand Down
2 changes: 1 addition & 1 deletion include/LDtkLoader/Layer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace ldtk {
Layer(const Layer&) = delete;
Layer(Layer&&) noexcept = default;
auto operator=(const Layer&) -> Layer& = delete;
auto operator=(Layer&&) -> Layer& = default;
auto operator=(Layer&&) -> Layer& = delete;

const Level* const level;
const IID iid;
Expand Down
2 changes: 1 addition & 1 deletion include/LDtkLoader/World.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace ldtk {
World(const World&) = delete;
World(World&&) noexcept = default;
auto operator=(const World&) -> World& = delete;
auto operator=(World&&) -> World& = default;
auto operator=(World&&) -> World& = delete;

const IID iid;

Expand Down
Loading