Просмотр исходного кода

test: suppress a warning from clang-cl

Michele Caini 2 лет назад
Родитель
Сommit
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;
     }