|
|
@@ -45,7 +45,6 @@ class emitter {
|
|
|
virtual ~basic_pool() = default;
|
|
|
virtual bool empty() const ENTT_NOEXCEPT = 0;
|
|
|
virtual void clear() ENTT_NOEXCEPT = 0;
|
|
|
- virtual id_type type_id() const ENTT_NOEXCEPT = 0;
|
|
|
};
|
|
|
|
|
|
template<typename Event>
|
|
|
@@ -116,10 +115,6 @@ class emitter {
|
|
|
on_list.remove_if([](auto &&element) { return element.first; });
|
|
|
}
|
|
|
|
|
|
- [[nodiscard]] id_type type_id() const ENTT_NOEXCEPT override {
|
|
|
- return type_info<Event>::id();
|
|
|
- }
|
|
|
-
|
|
|
private:
|
|
|
bool publishing{false};
|
|
|
container_type once_list{};
|