reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaExprCXX.cpp
 6031   ExceptionSpecificationType EST2 = ESI2.Type;
 6035   if (EST2 == EST_None) return ESI2;
 6037   if (EST2 == EST_MSAny) return ESI2;
 6039   if (EST2 == EST_NoexceptFalse) return ESI2;
 6042   if (EST1 == EST_NoThrow) return ESI2;
 6044   if (EST1 == EST_DynamicNone) return ESI2;
 6046   if (EST1 == EST_BasicNoexcept) return ESI2;
 6048   if (EST1 == EST_NoexceptTrue) return ESI2;
 6080     for (auto &Exceptions : {ESI1.Exceptions, ESI2.Exceptions})