mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
typeindices.hpp: fix constexpr constructor
Serious bug...
This commit is contained in:
parent
8054735cab
commit
be61499790
1 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,10 @@ namespace stx
|
|||
friend type_counter<Info>;
|
||||
|
||||
public:
|
||||
constexpr type_info() noexcept = default;
|
||||
constexpr type_info() noexcept
|
||||
: Info()
|
||||
{
|
||||
}
|
||||
|
||||
unsigned index() const
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue