diff options
author | Kadir Cetinkaya <kadircet@google.com> | 2018-08-08 08:59:29 +0000 |
---|---|---|
committer | Kadir Cetinkaya <kadircet@google.com> | 2018-08-08 08:59:29 +0000 |
commit | 2f84d911317b6c0c312ef34fd1ca20a32614ea15 (patch) | |
tree | 15180eef09fe85703271e62036cdfe09576190db /clang-tools-extra/clangd/Diagnostics.cpp | |
parent | c6a00f545c4175c94257827522d598013e213e34 (diff) | |
download | bcm5719-llvm-2f84d911317b6c0c312ef34fd1ca20a32614ea15.tar.gz bcm5719-llvm-2f84d911317b6c0c312ef34fd1ca20a32614ea15.zip |
Added functionality to suggest FixIts for conversion of '->' to '.' and vice versa.
Summary: Added functionality to suggest FixIts for conversion of '->' to '.' and vice versa.
Reviewers: ilya-biryukov
Reviewed By: ilya-biryukov
Subscribers: yvvan, ioeric, jkorous, arphaman, cfe-commits, kadircet
Differential Revision: https://reviews.llvm.org/D50193
llvm-svn: 339224
Diffstat (limited to 'clang-tools-extra/clangd/Diagnostics.cpp')
-rw-r--r-- | clang-tools-extra/clangd/Diagnostics.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang-tools-extra/clangd/Diagnostics.cpp b/clang-tools-extra/clangd/Diagnostics.cpp index 5a61567f2dc..3c293dde343 100644 --- a/clang-tools-extra/clangd/Diagnostics.cpp +++ b/clang-tools-extra/clangd/Diagnostics.cpp @@ -70,15 +70,6 @@ Range diagnosticRange(const clang::Diagnostic &D, const LangOptions &L) { return halfOpenToRange(M, R); } -TextEdit toTextEdit(const FixItHint &FixIt, const SourceManager &M, - const LangOptions &L) { - TextEdit Result; - Result.range = - halfOpenToRange(M, Lexer::makeFileCharRange(FixIt.RemoveRange, M, L)); - Result.newText = FixIt.CodeToInsert; - return Result; -} - bool isInsideMainFile(const SourceLocation Loc, const SourceManager &M) { return Loc.isValid() && M.isInMainFile(Loc); } |