Disable undocumented symbol check inside of templates due to large number of false positives

This commit is contained in:
Hackerpilot 2014-08-29 17:04:04 -07:00
parent 3ad19c8e10
commit ec4ba5f91f
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ private:
addMessage(declaration.line, declaration.column, null);
}
}
declaration.accept(this);
static if (!is (T == TemplateDeclaration))
declaration.accept(this);
}
}
}