OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NewMethod
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Sema/
SemaDecl.cpp
[
all
...]
SemaOverload.cpp
714
CXXMethodDecl*
NewMethod
= dyn_cast<CXXMethodDecl>(New);
715
if (OldMethod &&
NewMethod
&&
716
!OldMethod->isStatic() && !
NewMethod
->isStatic() &&
717
(OldMethod->getTypeQualifiers() !=
NewMethod
->getTypeQualifiers() ||
718
OldMethod->getRefQualifier() !=
NewMethod
->getRefQualifier())) {
720
OldMethod->getRefQualifier() !=
NewMethod
->getRefQualifier() &&
722
NewMethod
->getRefQualifier() == RQ_None)) {
729
Diag(
NewMethod
->getLocation(), diag::err_ref_qualifier_overload)
730
<<
NewMethod
->getRefQualifier() << OldMethod->getRefQualifier();
[
all
...]
Completed in 20 milliseconds