@@ -183,63 +183,63 @@ namespace RC::ObjectDumper
183183
184184 property_trivial_dump_to_string (p_this, out_line);
185185 // mc = MetaClass
186- out_line.append (fmt::format (STR (" [mc: {:016X}]" ), reinterpret_cast <uintptr_t >( typed_this->GetMetaClass ())));
186+ out_line.append (fmt::format (STR (" [mc: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( typed_this->GetMetaClass () ))));
187187 }
188188
189189 auto delegateproperty_to_string (void * p_this, StringType& out_line) -> void
190190 {
191191 property_trivial_dump_to_string (p_this, out_line);
192192
193193 FDelegateProperty* p_typed_this = static_cast <FDelegateProperty*>(p_this);
194- out_line.append (fmt::format (STR (" [df: {:016X}]" ), reinterpret_cast <uintptr_t >( p_typed_this->GetSignatureFunction ())));
194+ out_line.append (fmt::format (STR (" [df: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( p_typed_this->GetSignatureFunction () ))));
195195 }
196196
197197 auto fieldpathproperty_to_string (void * p_this, StringType& out_line) -> void
198198 {
199199 FFieldPathProperty* typed_this = static_cast <FFieldPathProperty*>(p_this);
200200
201201 property_trivial_dump_to_string (p_this, out_line);
202- out_line.append (fmt::format (STR (" [pc: {:016X}]" ), reinterpret_cast <uintptr_t >( typed_this->GetPropertyClass ())));
202+ out_line.append (fmt::format (STR (" [pc: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( typed_this->GetPropertyClass () ))));
203203 }
204204
205205 auto interfaceproperty_to_string (void * p_this, StringType& out_line) -> void
206206 {
207207 FInterfaceProperty* typed_this = static_cast <FInterfaceProperty*>(p_this);
208208
209209 property_trivial_dump_to_string (p_this, out_line);
210- out_line.append (fmt::format (STR (" [ic: {:016X}]" ), reinterpret_cast <uintptr_t >( typed_this->GetInterfaceClass ())));
210+ out_line.append (fmt::format (STR (" [ic: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( typed_this->GetInterfaceClass () ))));
211211 }
212212
213213 auto multicastdelegateproperty_to_string (void * p_this, StringType& out_line) -> void
214214 {
215215 property_trivial_dump_to_string (p_this, out_line);
216216
217217 FMulticastDelegateProperty* p_typed_this = static_cast <FMulticastDelegateProperty*>(p_this);
218- out_line.append (fmt::format (STR (" [df: {:016X}]" ), reinterpret_cast <uintptr_t >( p_typed_this->GetSignatureFunction ())));
218+ out_line.append (fmt::format (STR (" [df: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( p_typed_this->GetSignatureFunction () ))));
219219 }
220220
221221 auto objectproperty_to_string (void * p_this, StringType& out_line) -> void
222222 {
223223 FObjectProperty* typed_this = static_cast <FObjectProperty*>(p_this);
224224
225225 property_trivial_dump_to_string (p_this, out_line);
226- out_line.append (fmt::format (STR (" [pc: {:016X}]" ), reinterpret_cast <uintptr_t >( typed_this->GetPropertyClass ())));
226+ out_line.append (fmt::format (STR (" [pc: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( typed_this->GetPropertyClass () ))));
227227 }
228228
229229 auto structproperty_to_string (void * p_this, StringType& out_line) -> void
230230 {
231231 FStructProperty* typed_this = static_cast <FStructProperty*>(p_this);
232232
233233 property_trivial_dump_to_string (p_this, out_line);
234- out_line.append (fmt::format (STR (" [ss: {:016X}]" ), reinterpret_cast <uintptr_t >( typed_this->GetStruct ())));
234+ out_line.append (fmt::format (STR (" [ss: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( typed_this->GetStruct () ))));
235235 }
236236
237237 auto enumproperty_to_string (void * p_this, StringType& out_line) -> void
238238 {
239239 property_trivial_dump_to_string (p_this, out_line);
240240
241241 auto * typed_this = static_cast <FEnumProperty*>(p_this);
242- out_line.append (fmt::format (STR (" [em: {:016X}]" ), reinterpret_cast <uintptr_t >( typed_this->GetEnum ())));
242+ out_line.append (fmt::format (STR (" [em: {:016X}]" ), reinterpret_cast <UPTRINT>( ToRawPtr ( typed_this->GetEnum () ))));
243243 }
244244
245245 auto boolproperty_to_string (void * p_this, StringType& out_line) -> void
0 commit comments