Cleanup formatting

llvm-svn: 60140
This commit is contained in:
Douglas Gregor 2008-11-27 00:52:49 +00:00
parent 83bdb38965
commit bb9bf88fa4
1 changed files with 8 additions and 4 deletions

View File

@ -783,7 +783,8 @@ bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
// can be converted to an rvalue of type "pointer to cv void" (C++ // can be converted to an rvalue of type "pointer to cv void" (C++
// 4.10p2). // 4.10p2).
if (FromPointeeType->isIncompleteOrObjectType() && ToPointeeType->isVoidType()) { if (FromPointeeType->isIncompleteOrObjectType() && ToPointeeType->isVoidType()) {
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr, ToPointeeType, ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
ToPointeeType,
ToType, Context); ToType, Context);
return true; return true;
} }
@ -803,7 +804,8 @@ bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
// here. That is handled by CheckPointerConversion. // here. That is handled by CheckPointerConversion.
if (FromPointeeType->isRecordType() && ToPointeeType->isRecordType() && if (FromPointeeType->isRecordType() && ToPointeeType->isRecordType() &&
IsDerivedFrom(FromPointeeType, ToPointeeType)) { IsDerivedFrom(FromPointeeType, ToPointeeType)) {
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr, ToPointeeType, ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
ToPointeeType,
ToType, Context); ToType, Context);
return true; return true;
} }
@ -814,7 +816,8 @@ bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
const ObjCInterfaceType* ToIface = ToPointeeType->getAsObjCInterfaceType(); const ObjCInterfaceType* ToIface = ToPointeeType->getAsObjCInterfaceType();
if (FromIface && ToIface && if (FromIface && ToIface &&
Context.canAssignObjCInterfaces(ToIface, FromIface)) { Context.canAssignObjCInterfaces(ToIface, FromIface)) {
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr, ToPointeeType, ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
ToPointeeType,
ToType, Context); ToType, Context);
return true; return true;
} }
@ -823,7 +826,8 @@ bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
// to any interface (in both directions). // to any interface (in both directions).
if ((FromIface && Context.isObjCIdType(ToPointeeType)) if ((FromIface && Context.isObjCIdType(ToPointeeType))
|| (ToIface && Context.isObjCIdType(FromPointeeType))) { || (ToIface && Context.isObjCIdType(FromPointeeType))) {
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr, ToPointeeType, ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
ToPointeeType,
ToType, Context); ToType, Context);
return true; return true;
} }