[lldb][NFC] Make ClangDiagnostic::m_fixit_vec private

llvm-svn: 367542
This commit is contained in:
Raphael Isemann 2019-08-01 11:05:47 +00:00
parent 2fe0a14b5a
commit 0a39368b6c
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ public:
}
const FixItList &FixIts() const { return m_fixit_vec; }
private:
FixItList m_fixit_vec;
};