diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-02-29 00:20:42 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-02-29 00:20:42 +0000 |
commit | fc399c7719e5643791564d45087fd651469aad5c (patch) | |
tree | da7be4ee3f7431c4d53d0f03f86a7ac52816c502 /tools/libclang/CIndexDiagnostic.cpp | |
parent | c60ccf5b4fb657ca40da3019c2bbe15dd8ab9732 (diff) |
Remove stray semi-colon.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151682 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/CIndexDiagnostic.cpp')
-rw-r--r-- | tools/libclang/CIndexDiagnostic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libclang/CIndexDiagnostic.cpp b/tools/libclang/CIndexDiagnostic.cpp index 6a2a2b1904..24a2652f7f 100644 --- a/tools/libclang/CIndexDiagnostic.cpp +++ b/tools/libclang/CIndexDiagnostic.cpp @@ -130,7 +130,7 @@ public: virtual void emitCodeContext(SourceLocation Loc, DiagnosticsEngine::Level Level, SmallVectorImpl<CharSourceRange>& Ranges, - ArrayRef<FixItHint> Hints) {}; + ArrayRef<FixItHint> Hints) {} virtual void emitNote(SourceLocation Loc, StringRef Message) { CXSourceLocation L = translateSourceLocation(SM, LangOpts, Loc); |