From: Richard Smith Date: Fri, 23 Aug 2013 22:49:47 +0000 (+0000) Subject: Add a FIXME. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63f25e6719e3920a04f66a80958b792ac268aedd;p=clang Add a FIXME. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189153 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index 6998827e16..9664937954 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -4831,6 +4831,7 @@ bool Sema::RequireCompleteExprType(Expr *E, TypeDiagnoser &Diagnoser){ // Fast path the case where the type is already complete. if (!T->isIncompleteType()) + // FIXME: The definition might not be visible. return false; // Incomplete array types may be completed by the initializer attached to