diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index 234e72244f54f3c21f8005037345199a854b880e..d3b773e53500229b0b6179e66a5a1709852f25b3 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -5072,7 +5072,8 @@ bool Sema::checkNullabilityTypeSpecifier(QualType &type, Diag(nullabilityLoc, diag::err_nullability_conflicting) << static_cast<unsigned>(nullability) << isContextSensitive - << static_cast<unsigned>(*existingNullability); + << static_cast<unsigned>(*existingNullability) + << false; // Try to find the typedef with the existing nullability specifier. if (auto typedefType = desugared->getAs<TypedefType>()) {