[Misc] Cleanup in Kernel

This commit is contained in:
Gliniak
2025-05-29 10:15:44 +02:00
committed by Radosław Gliński
parent 50492a951e
commit b864149575
101 changed files with 184 additions and 374 deletions

View File

@@ -15,8 +15,6 @@ namespace xe {
namespace kernel {
namespace xam {
Property::Property() : UserData() {};
Property::Property(const Property& property)
: UserData(property), property_id_(property.property_id_) {}
@@ -43,8 +41,6 @@ Property::Property(std::span<const uint8_t> serialized_data)
*reinterpret_cast<const uint32_t*>(serialized_data.data());
}
Property::~Property() {};
std::vector<uint8_t> Property::Serialize() const {
std::vector<uint8_t> serialized_property(
sizeof(AttributeKey) + sizeof(X_USER_DATA) + extended_data_.size());