Kaydet (Commit) 3d963884 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Adapt UPDATE_FILES=<module> to headers being moved to include/

Change-Id: I6af5236358a51a51514d646c809147db56b2464b
üst f2e5461f
......@@ -21,6 +21,17 @@
This source file manages all plugin actions. It is not necessary to modify this
file when adding new actions.
*/
namespace
{
bool isPrefix( const string& prefix, const string& full)
{
return full.compare(0, prefix.size(), prefix) == 0;
}
}
namespace loplugin
{
......@@ -193,7 +204,7 @@ void PluginHandler::HandleTranslationUnit( ASTContext& context )
; // ok
else // scope is module
{
if( strncmp( modifyFile.c_str(), ( SRCDIR "/" + scope + "/" ).c_str(), ( SRCDIR "/" + scope + "/" ).size()) != 0 )
if( !( isPrefix( SRCDIR "/" + scope + "/", modifyFile ) || isPrefix( SRCDIR "/include/" + scope + "/", modifyFile ) ) )
continue;
}
// Warn only now, so that files not in scope do not cause warnings.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment