aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Sema/SemaType.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp
index 005bc4ad99..dc0d39a5f4 100644
--- a/lib/Sema/SemaType.cpp
+++ b/lib/Sema/SemaType.cpp
@@ -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;