From 5fc6ee27f6a3076a7d988e1a615b65a6368f23be Mon Sep 17 00:00:00 2001 From: Innokentiy Alaytsev Date: Tue, 8 Sep 2020 14:32:12 +0000 Subject: [PATCH] Fixed trailing spaces Signed-off-by: Innokentiy Alaytsev --- src/entt/meta/meta.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/entt/meta/meta.hpp b/src/entt/meta/meta.hpp index e8cfc0f48..78bc560bf 100644 --- a/src/entt/meta/meta.hpp +++ b/src/entt/meta/meta.hpp @@ -1468,7 +1468,7 @@ public: * functions and properties, as well as its constructors, destructors and * conversion functions if any.
* Base classes aren't reset but the link between the two types is removed. - * + * * The meta type is also removed from the list of searchable types. */ void reset() ENTT_NOEXCEPT { @@ -1492,14 +1492,14 @@ public: } } }; - + unregister_all(&node->prop); unregister_all(&node->base); unregister_all(&node->conv); unregister_all(&node->ctor, &internal::meta_ctor_node::prop); unregister_all(&node->data, &internal::meta_data_node::prop); unregister_all(&node->func, &internal::meta_func_node::prop); - + node->id = {}; node->dtor = nullptr; }