diff options
Diffstat (limited to 'src/light.cpp')
-rw-r--r-- | src/light.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/light.cpp b/src/light.cpp index 3e25dfc5..4f280d97 100644 --- a/src/light.cpp +++ b/src/light.cpp @@ -15,9 +15,12 @@ light_proto::light_proto() type = object_type::light; } +light_proto::~light_proto() noexcept = default; light_proto::light_proto(const light_proto&) = default; light_proto& light_proto::operator=(const light_proto&) = default; -light_proto::~light_proto() noexcept = default; +light_proto::light_proto(light_proto&&) noexcept = default; +light_proto& light_proto::operator=(light_proto&&) noexcept = default; + bool light_proto::operator==(const light_proto&) const = default; light::light(object_id id, class chunk& c, const light_proto& proto) : |