Make a function static. NFC.

llvm-svn: 285458
This commit is contained in:
George Burgess IV 2016-10-28 21:42:06 +00:00
parent a80039721a
commit d66d37cbd9
1 changed files with 3 additions and 4 deletions

View File

@ -8982,10 +8982,9 @@ enum OverloadCandidateKind {
oc_inherited_constructor_template oc_inherited_constructor_template
}; };
OverloadCandidateKind ClassifyOverloadCandidate(Sema &S, static OverloadCandidateKind
NamedDecl *Found, ClassifyOverloadCandidate(Sema &S, NamedDecl *Found, FunctionDecl *Fn,
FunctionDecl *Fn, std::string &Description) {
std::string &Description) {
bool isTemplate = false; bool isTemplate = false;
if (FunctionTemplateDecl *FunTmpl = Fn->getPrimaryTemplate()) { if (FunctionTemplateDecl *FunTmpl = Fn->getPrimaryTemplate()) {