[Clang-tidy] Fix extra semicolon warning in cppcoreguidelines/ProTypeMemberInitCheck.cpp.

llvm-svn: 266795
This commit is contained in:
Eugene Zelenko 2016-04-19 18:49:21 +00:00
parent 2effffd456
commit 5a783d0a1f
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ SourceLocation getLocationForEndOfToken(const ASTContext &Context,
SourceLocation Location) {
return Lexer::getLocForEndOfToken(Location, 0, Context.getSourceManager(),
Context.getLangOpts());
};
}
// There are 3 kinds of insertion placements:
enum class InitializerPlacement {
@ -248,7 +248,7 @@ void forEachField(const RecordDecl *Record, const T &Fields,
}
}
} // namespace
} // anonymous namespace
ProTypeMemberInitCheck::ProTypeMemberInitCheck(StringRef Name,
ClangTidyContext *Context)