Index: tools/clang/plugins/Options.h |
diff --git a/tools/clang/plugins/Options.h b/tools/clang/plugins/Options.h |
index 5611ca82e4df1f3499b5920128fc67893da89420..5ef497731555544ed063380b65b6a5926e5f3f85 100644 |
--- a/tools/clang/plugins/Options.h |
+++ b/tools/clang/plugins/Options.h |
@@ -10,16 +10,16 @@ namespace chrome_checker { |
struct Options { |
Options() |
: check_base_classes(false), |
- check_weak_ptr_factory_order(false), |
check_enum_last_value(false), |
strict_virtual_specifiers(false), |
- with_ast_visitor(false) {} |
+ with_ast_visitor(false), |
+ check_templates(false) {} |
bool check_base_classes; |
- bool check_weak_ptr_factory_order; |
bool check_enum_last_value; |
bool strict_virtual_specifiers; |
bool with_ast_visitor; |
+ bool check_templates; |
}; |
} // namespace chrome_checker |