[clang-tidy] Don't use delegating constructors.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@245046 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexander Kornienko 2015-08-14 13:23:55 +00:00
Родитель 78f15552b8
Коммит b346722d21
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -73,7 +73,8 @@ public:
class CSystemIncludeInserterCheck : public IncludeInserterCheckBase {
public:
using IncludeInserterCheckBase::IncludeInserterCheckBase;
CSystemIncludeInserterCheck(StringRef CheckName, ClangTidyContext *Context)
: IncludeInserterCheckBase(CheckName, Context) {}
StringRef HeaderToInclude() const override { return "stdlib.h"; }
bool IsAngledInclude() const override { return true; }
};
@ -492,4 +493,4 @@ void foo() {
} // namespace tidy
} // namespace clang
#endif
#endif