diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-04-04 19:44:16 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-04-04 19:44:16 +0000 |
commit | 6ae936cbf211299726502ccafbd9ef6171ffc2df (patch) | |
tree | e1ee267e22f478aa19e3250221dac9da509c78c2 | |
parent | 3ce44feaadb3e295e4e0c2f5c29e23f73995639c (diff) | |
download | bcm5719-llvm-6ae936cbf211299726502ccafbd9ef6171ffc2df.tar.gz bcm5719-llvm-6ae936cbf211299726502ccafbd9ef6171ffc2df.zip |
[Sema] Delete FIXME that has been fixed. NFC.
llvm-svn: 265341
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 93b5ff9c996..de9ebe77190 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -5089,8 +5089,6 @@ Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, // Determine whether this is a dependent call inside a C++ template, // in which case we won't do any semantic analysis now. - // FIXME: Will need to cache the results of name lookup (including ADL) in - // Fn. bool Dependent = false; if (Fn->isTypeDependent()) Dependent = true; |