mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-25 00:12:58 +00:00
General: Default constructors and destructors where applicable
This commit is contained in:
@@ -80,7 +80,7 @@ static_assert(sizeof(Value) <= 2 * sizeof(u64), "IR::Value should be kept small
|
||||
template <Type type_>
|
||||
class TypedValue final : public Value {
|
||||
public:
|
||||
TypedValue() : Value() {}
|
||||
TypedValue() = default;
|
||||
|
||||
template <Type other_type, typename = std::enable_if_t<(other_type & type_) != Type::Void>>
|
||||
/* implicit */ TypedValue(const TypedValue<other_type>& value) : Value(value) {
|
||||
|
||||
Reference in New Issue
Block a user