File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lldb/source/Plugins/Trace/intel-pt Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,14 @@ TraceIntelPT::PluginProperties::PluginProperties() : Properties() {
60
60
uint64_t
61
61
TraceIntelPT::PluginProperties::GetInfiniteDecodingLoopVerificationThreshold () {
62
62
const uint32_t idx = ePropertyInfiniteDecodingLoopVerificationThreshold;
63
- return m_collection_sp-> GetPropertyAtIndexAsUInt64 (
64
- nullptr , idx, g_traceintelpt_properties[idx].default_uint_value );
63
+ return GetPropertyAtIndexAs< uint64_t > (
64
+ idx, g_traceintelpt_properties[idx].default_uint_value );
65
65
}
66
66
67
67
uint64_t TraceIntelPT::PluginProperties::GetExtremelyLargeDecodingThreshold () {
68
68
const uint32_t idx = ePropertyExtremelyLargeDecodingThreshold;
69
- return m_collection_sp-> GetPropertyAtIndexAsUInt64 (
70
- nullptr , idx, g_traceintelpt_properties[idx].default_uint_value );
69
+ return GetPropertyAtIndexAs< uint64_t > (
70
+ idx, g_traceintelpt_properties[idx].default_uint_value );
71
71
}
72
72
73
73
TraceIntelPT::PluginProperties &TraceIntelPT::GetGlobalProperties () {
You can’t perform that action at this time.
0 commit comments