Douglas Gregor wrote:
> Author: dgregor
> Date: Wed Dec 17 16:52:20 2008
> New Revision: 61165
>
> URL: http://llvm.org/viewvc/llvm-project?rev=61165&view=rev
> Log:
> Delay semantic analysis of the C++ names casts when the subexpression is 
> type-dependent or the destination type is dependent.
>  
> +  // If the type is dependent, we won't do the semantic analysis now.
> +  // FIXME: should we check this in a more fine-grained manner?
> +  bool TypeDependent = DestType->isDependentType() || Ex->isTypeDependent();
> +
>   
What do you have in mind?

Sebastian
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to