I assume these special plugins were not intended to be enabled unconditionally

...with fa135fd0e0 "remove unused SID constants
and associated code"

Change-Id: I51b2a9e3c8ce13401818bca0c40167a4364212f1
This commit is contained in:
Stephan Bergmann
2016-06-02 23:46:46 +02:00
parent e70cdaba2e
commit 2712fc0869
2 changed files with 2 additions and 2 deletions

View File

@@ -297,7 +297,7 @@ bool UnusedFields::VisitDeclRefExpr( const DeclRefExpr* declRefExpr )
return true;
}
loplugin::Plugin::Registration< UnusedFields > X("unusedfields", true);
loplugin::Plugin::Registration< UnusedFields > X("unusedfields", false);
}

View File

@@ -378,7 +378,7 @@ bool UnusedMethods::VisitDeclRefExpr( const DeclRefExpr* declRefExpr )
return true;
}
loplugin::Plugin::Registration< UnusedMethods > X("unusedmethods", true);
loplugin::Plugin::Registration< UnusedMethods > X("unusedmethods", false);
}