diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-28 09:00:35 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-28 19:55:54 +0200 |
| commit | 891617bfb876c9c2f56e07a1946466bd255b8273 (patch) | |
| tree | adc9e27a7a706a1d497ea88f08090151e6364688 | |
| parent | e75f59477c62b364d3986153847828762490227a (diff) | |
workaround warning
| -rw-r--r-- | entity/metadata.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/entity/metadata.hpp b/entity/metadata.hpp index 101af0df..aa0fef95 100644 --- a/entity/metadata.hpp +++ b/entity/metadata.hpp @@ -264,6 +264,8 @@ public: static constexpr auto accessors = entities::entity_accessors<T, Intent>::accessors(); static constexpr size_t size = std::tuple_size_v<std::decay_t<decltype(accessors)>>; static constexpr auto erased_accessors = erased_helper(accessors, std::make_index_sequence<size>{}); + + entity_metadata() = default; }; template<typename T, typename Intent> |
