فهرست منبع

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;
     }