mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12: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
Add a link
Reference in a new issue