[cfe-commits] r101092 - /cfe/trunk/lib/Sema/SemaType.cpp
Douglas Gregor
dgregor at apple.com
Mon Apr 12 16:52:24 PDT 2010
Author: dgregor
Date: Mon Apr 12 18:52:24 2010
New Revision: 101092
URL: http://llvm.org/viewvc/llvm-project?rev=101092&view=rev
Log:
Remove some dead FIXMEs
Modified:
cfe/trunk/lib/Sema/SemaType.cpp
Modified: cfe/trunk/lib/Sema/SemaType.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaType.cpp?rev=101092&r1=101091&r2=101092&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaType.cpp (original)
+++ cfe/trunk/lib/Sema/SemaType.cpp Mon Apr 12 18:52:24 2010
@@ -950,8 +950,6 @@
// "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 @@
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;
More information about the cfe-commits
mailing list