diff options
| author | Tatyana Krasnukha <tatyana@synopsys.com> | 2018-09-27 07:11:58 +0000 |
|---|---|---|
| committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2018-09-27 07:11:58 +0000 |
| commit | e40db05b27750d40a61d7b9d8be8d18b23218941 (patch) | |
| tree | c78d70def4941cac312d233c5409899c22fa773b /lldb/source/Target/Thread.cpp | |
| parent | 041e68fe1e00ba949deb36f6f9da893a83dbc7fe (diff) | |
| download | llvm-e40db05b27750d40a61d7b9d8be8d18b23218941.tar.gz llvm-e40db05b27750d40a61d7b9d8be8d18b23218941.tar.bz2 llvm-e40db05b27750d40a61d7b9d8be8d18b23218941.zip | |
Replace pointer to C-array of PropertyDefinition with llvm::ArrayRef
Differential Revision: https://reviews.llvm.org/D52572
llvm-svn: 343181
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
| -rw-r--r-- | lldb/source/Target/Thread.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index aa093d667ff5..39a56985b90f 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -80,8 +80,7 @@ static constexpr PropertyDefinition g_properties[] = { {"trace-thread", OptionValue::eTypeBoolean, false, false, nullptr, {}, "If true, this thread will single-step and log execution."}, {"max-backtrace-depth", OptionValue::eTypeUInt64, false, 300000, nullptr, - {}, "Maximum number of frames to backtrace."}, - {nullptr, OptionValue::eTypeInvalid, false, 0, nullptr, {}, nullptr}}; + {}, "Maximum number of frames to backtrace."}}; enum { ePropertyStepInAvoidsNoDebug, |
