[clang-tidy] Don't use delegating constructors, since they are not supported by MSVC 2013

llvm-svn: 259214
This commit is contained in:
Alexander Kornienko 2016-01-29 17:35:53 +00:00
parent 8c738635b1
commit d0d8878fb6
1 changed files with 4 additions and 3 deletions

View File

@ -21,7 +21,8 @@ namespace performance {
// isn't any implicit conversion).
class ImplicitCastInLoopCheck : public ClangTidyCheck {
public:
using ClangTidyCheck::ClangTidyCheck;
ImplicitCastInLoopCheck(StringRef Name, ClangTidyContext *Context)
: ClangTidyCheck(Name, Context) {}
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;