enum OverloadingResult
Description
OverloadingResult - Capture the result of performing overload resolution.
Declared at: clang/include/clang/Sema/Overload.h:51
Enumerators
Name | Value | Comment |
---|---|---|
OR_Success | 0 | Overload resolution succeeded. |
OR_No_Viable_Function | 1 | No viable function found. |
OR_Ambiguous | 2 | Ambiguous candidates found. |
OR_Deleted | 3 | Succeeded, but refers to a deleted function. |