File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -234,13 +234,13 @@ void ProcessProperties::SetVirtualAddressableBits(uint32_t bits) {
234
234
235
235
uint32_t ProcessProperties::GetHighmemVirtualAddressableBits () const {
236
236
const uint32_t idx = ePropertyHighmemVirtualAddressableBits;
237
- return GetPropertyAtIndexAs< uint64_t > (
238
- idx, g_process_properties[idx].default_uint_value );
237
+ return m_collection_sp-> GetPropertyAtIndexAsUInt64 (
238
+ nullptr , idx, g_process_properties[idx].default_uint_value );
239
239
}
240
240
241
241
void ProcessProperties::SetHighmemVirtualAddressableBits (uint32_t bits) {
242
242
const uint32_t idx = ePropertyHighmemVirtualAddressableBits;
243
- SetPropertyAtIndex ( idx, static_cast < uint64_t >( bits) );
243
+ m_collection_sp-> SetPropertyAtIndexAsUInt64 ( nullptr , idx, bits);
244
244
}
245
245
246
246
void ProcessProperties::SetPythonOSPluginPath (const FileSpec &file) {
You can’t perform that action at this time.
0 commit comments