mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 05:56:08 +00:00
Fix ClangTidyOptions constructor to initialize all members. Fixes bug introduced in r207652.
Reviewers: rsmith Subscribers: cfe-commits, alexfh, klimek Differential Revision: http://reviews.llvm.org/D3578 llvm-svn: 207715
This commit is contained in:
parent
f74bde6735
commit
3b510bc43d
@ -15,7 +15,7 @@ namespace tidy {
|
||||
|
||||
/// \brief Contains options for clang-tidy.
|
||||
struct ClangTidyOptions {
|
||||
ClangTidyOptions() : EnableChecksRegex(".*") {}
|
||||
ClangTidyOptions() : EnableChecksRegex(".*"), AnalyzeTemporaryDtors(false) {}
|
||||
std::string EnableChecksRegex;
|
||||
std::string DisableChecksRegex;
|
||||
bool AnalyzeTemporaryDtors;
|
||||
|
Loading…
x
Reference in New Issue
Block a user