File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ class DiagnosticManager {
107
107
m_fixed_expression.clear ();
108
108
}
109
109
110
- const DiagnosticList &Diagnostics () { return m_diagnostics; }
110
+ const DiagnosticList &Diagnostics () const { return m_diagnostics; }
111
+ DiagnosticList &Diagnostics () { return m_diagnostics; }
111
112
112
113
bool HasFixIts () const {
113
114
return llvm::any_of (m_diagnostics,
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ class VariableList {
24
24
VariableList ();
25
25
virtual ~VariableList ();
26
26
27
+ VariableList (VariableList &&) = default ;
28
+ VariableList &operator =(VariableList &&) = default ;
29
+
27
30
void AddVariable (const lldb::VariableSP &var_sp);
28
31
29
32
bool AddVariableIfUnique (const lldb::VariableSP &var_sp);
You can’t perform that action at this time.
0 commit comments