Remove some dead FIXMEs

llvm-svn: 101092
This commit is contained in:
Douglas Gregor 2010-04-12 23:52:24 +00:00
parent 2c326bce38
commit b3cdaee190
1 changed files with 0 additions and 3 deletions

View File

@ -950,8 +950,6 @@ QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
// "void" instead.
T = Context.VoidTy;
// FIXME: Keep track of source location information within the constructor
// or destructor name.
if (TInfo)
ReturnTypeInfo = Context.getTrivialTypeSourceInfo(T,
D.getName().StartLocation);
@ -960,7 +958,6 @@ QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
case UnqualifiedId::IK_ConversionFunctionId:
// The result type of a conversion function is the type that it
// converts to.
// FIXME: Keep track of the location of the 'operator' keyword?
T = GetTypeFromParser(D.getName().ConversionFunctionId,
TInfo? &ReturnTypeInfo : 0);
break;