From be61499790bb34dbffc203058c117c0e51c9727f Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Wed, 18 Sep 2019 15:26:09 +0300 Subject: [PATCH] typeindices.hpp: fix constexpr constructor Serious bug... --- rpcs3/util/typeindices.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rpcs3/util/typeindices.hpp b/rpcs3/util/typeindices.hpp index 8bb4d44ae1..3dee505164 100644 --- a/rpcs3/util/typeindices.hpp +++ b/rpcs3/util/typeindices.hpp @@ -20,7 +20,10 @@ namespace stx friend type_counter; public: - constexpr type_info() noexcept = default; + constexpr type_info() noexcept + : Info() + { + } unsigned index() const {