mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 01:58:44 +08:00
[LLDB] Applying clang-tidy modernize-use-default-member-init over LLDB
Applied modernize-use-default-member-init clang-tidy check over LLDB. It appears in many files we had already switched to in class member init but never updated the constructors to reflect that. This check is already present in the lldb/.clang-tidy config. Differential Revision: https://reviews.llvm.org/D121481
This commit is contained in:
@@ -24,9 +24,8 @@ using namespace lldb_private;
|
||||
OptionValueFileColonLine::OptionValueFileColonLine() = default;
|
||||
|
||||
OptionValueFileColonLine::OptionValueFileColonLine(llvm::StringRef input)
|
||||
: m_line_number(LLDB_INVALID_LINE_NUMBER),
|
||||
m_column_number(LLDB_INVALID_COLUMN_NUMBER),
|
||||
m_completion_mask(CommandCompletions::eSourceFileCompletion) {
|
||||
|
||||
{
|
||||
SetValueFromString(input, eVarSetOperationAssign);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user