enum Sema::OverloadKind
Description
C++ Overloading.
Declared at: clang/include/clang/Sema/Sema.h:3617
Enumerators
Name | Value | Comment |
---|---|---|
Ovl_Overload | 0 | This is a legitimate overload: the existing declarations are functions or function templates with different signatures. |
Ovl_Match | 1 | This is not an overload because the signature exactly matches an existing declaration. |
Ovl_NonFunction | 2 | This is not an overload because the lookup results contain a non-function. |