mirror of
https://github.com/dlang-community/D-Scanner.git
synced 2025-04-26 13:20:07 +03:00
Disable undocumented symbol check inside of templates due to large number of false positives
This commit is contained in:
parent
3ad19c8e10
commit
ec4ba5f91f
1 changed files with 2 additions and 1 deletions
|
@ -120,7 +120,8 @@ private:
|
|||
addMessage(declaration.line, declaration.column, null);
|
||||
}
|
||||
}
|
||||
declaration.accept(this);
|
||||
static if (!is (T == TemplateDeclaration))
|
||||
declaration.accept(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue