Преглед изворни кода

test: suppress a warning from clang-cl

Michele Caini пре 2 година
родитељ
комит
ffa0a7f276
1 измењених фајлова са 5 додато и 0 уклоњено
  1. 5 0
      test/example/custom_identifier.cpp

+ 5 - 0
test/example/custom_identifier.cpp

@@ -13,6 +13,11 @@ struct entity_id {
     constexpr entity_id(const entity_id &other) noexcept
         : entt{other.entt} {}
 
+    constexpr entity_id &operator=(const entity_id &other) noexcept {
+        entt = other.entt;
+        return *this;
+    }
+
     constexpr operator entity_type() const noexcept {
         return entt;
     }