aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/CommentSema.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-09-10 21:20:09 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-09-10 21:20:09 +0000
commit1ad23d62007162df82b58bca31b4aa277a5f6586 (patch)
tree4606e376e5bd2c08c13676bd0802cf9f54f3c35e /lib/AST/CommentSema.cpp
parente4330a302ac20b41b9800267ebd4b5b01f8553f8 (diff)
Remove redundant semicolons which are null statements.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163546 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentSema.cpp')
-rw-r--r--lib/AST/CommentSema.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/CommentSema.cpp b/lib/AST/CommentSema.cpp
index 953afe147e..e57dac7104 100644
--- a/lib/AST/CommentSema.cpp
+++ b/lib/AST/CommentSema.cpp
@@ -675,7 +675,7 @@ unsigned Sema::correctTypoInParmVarReference(
if (Corrector.getBestDecl())
return Corrector.getBestDeclIndex();
else
- return ParamCommandComment::InvalidParamIndex;;
+ return ParamCommandComment::InvalidParamIndex;
}
namespace {