typeindices.hpp: fix constexpr constructor

Serious bug...
This commit is contained in:
Nekotekina 2019-09-18 15:26:09 +03:00
parent 8054735cab
commit be61499790
1 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,10 @@ namespace stx
friend type_counter<Info>;
public:
constexpr type_info() noexcept = default;
constexpr type_info() noexcept
: Info()
{
}
unsigned index() const
{