diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-07-27 23:26:26 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-07-27 23:26:26 +0000 |
commit | 0ba5880d6b3278a51ad69307f2c65fa3a118cb85 (patch) | |
tree | 1d4d517c528f213bc1bfa3e7d96d4d40968a4a80 /lib/AST/CommentSema.cpp | |
parent | 533b34fa7bce6aee7a76f962f02afdf022df6d08 (diff) |
CommentSema.cpp: remove extra semicolon
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160901 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentSema.cpp')
-rw-r--r-- | lib/AST/CommentSema.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/CommentSema.cpp b/lib/AST/CommentSema.cpp index f0790760a9..bb0d03ebd2 100644 --- a/lib/AST/CommentSema.cpp +++ b/lib/AST/CommentSema.cpp @@ -451,7 +451,7 @@ unsigned Sema::correctTypoInParmVarReference( if (BestEditDistance <= MaxEditDistance) return BestPVDIndex; else - return ParamCommandComment::InvalidParamIndex;; + return ParamCommandComment::InvalidParamIndex; } // TODO: tablegen |