enum LookupResult::LookupResultKind
Declared at: clang/include/clang/Sema/Lookup.h:48
Enumerators
Name | Value | Comment |
---|---|---|
NotFound | 0 | No entity found met the criteria. |
NotFoundInCurrentInstantiation | 1 | No entity found met the criteria within the current instantiation,, but there were dependent base classes of the current instantiation that could not be searched. |
Found | 2 | Name lookup found a single declaration that met the criteria. getFoundDecl() will return this declaration. |
FoundOverloaded | 3 | Name lookup found a set of overloaded functions that met the criteria. |
FoundUnresolvedValue | 4 | Name lookup found an unresolvable value declaration and cannot yet complete. This only happens in C++ dependent contexts with dependent using declarations. |
Ambiguous | 5 | Name lookup results in an ambiguity; use getAmbiguityKind to figure out what kind of ambiguity we have. |