diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2017-05-02 20:24:56 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2017-05-02 20:24:56 +0000 |
commit | 7e7007d1c6ba8f302c6c63c5149c72f4ca627a45 (patch) | |
tree | 9ef3810e4c39c5dec52c23d1dfc63205e26e7174 /clang | |
parent | a0f30da62e2aa0b0eda5135499650a202a37f1f0 (diff) | |
download | bcm5719-llvm-7e7007d1c6ba8f302c6c63c5149c72f4ca627a45.tar.gz bcm5719-llvm-7e7007d1c6ba8f302c6c63c5149c72f4ca627a45.zip |
[Sema] Update function doc; NFC
llvm-svn: 301970
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index f7307f35568..d63151ef675 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -15372,7 +15372,7 @@ static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { } /// Check for operands with placeholder types and complain if found. -/// Returns true if there was an error and no recovery was possible. +/// Returns ExprError() if there was an error and no recovery was possible. ExprResult Sema::CheckPlaceholderExpr(Expr *E) { if (!getLangOpts().CPlusPlus) { // C cannot handle TypoExpr nodes on either side of a binop because it |