[Misc] Cleanup in Kernel
This commit is contained in:
committed by
Radosław Gliński
parent
50492a951e
commit
b864149575
@@ -35,7 +35,7 @@ static_assert_size(XUSER_PROPERTY, 0x18);
|
||||
|
||||
class Property : public UserData {
|
||||
public:
|
||||
Property();
|
||||
Property() = default;
|
||||
Property(const Property& property);
|
||||
|
||||
Property(uint32_t property_id, UserDataTypes property_data);
|
||||
@@ -44,7 +44,8 @@ class Property : public UserData {
|
||||
// Ctor used for deserialization
|
||||
Property(const uint8_t* serialized_data, size_t data_size);
|
||||
Property(std::span<const uint8_t> serialized_data);
|
||||
~Property();
|
||||
|
||||
~Property() = default;
|
||||
|
||||
const AttributeKey GetPropertyId() const { return property_id_; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user