meta: cleanup/minor changes

This commit is contained in:
Michele Caini
2021-03-04 10:17:39 +01:00
parent 38ab02ff88
commit a53066424b
2 changed files with 3 additions and 3 deletions

View File

@@ -1536,6 +1536,7 @@ public:
node->id = {};
node->ctor = node->def_ctor;
node->dtor = nullptr;
node->next = nullptr;
}
private:

View File

@@ -11,7 +11,6 @@
#include "../core/fwd.hpp"
#include "../core/type_info.hpp"
#include "../core/type_traits.hpp"
#include "adl_pointer.hpp"
#include "type_traits.hpp"
@@ -248,8 +247,8 @@ public:
};
template<typename... Type>
struct meta_info: meta_node<std::remove_cv_t<std::remove_reference_t<Type>>...> {};
template<typename Type>
struct meta_info: meta_node<std::remove_cv_t<std::remove_reference_t<Type>>> {};
}