aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-04-12 23:52:24 +0000
committerDouglas Gregor <dgregor@apple.com>2010-04-12 23:52:24 +0000
commitc0b53c2e4c954fe59917da5194ba4b9f831fa5bf (patch)
treef9a2086803c872108016d1c589e62242104d402b
parentc520c84f7e9c2d8d4a66ac438e10d815daaeae64 (diff)
Remove some dead FIXMEs
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101092 91177308-0d34-0410-b5e6-96231b3b80d8
-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;