aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-05-01 08:48:19 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-05-01 08:48:19 +0000
commitf7ef00048d0a3f6079d82e00a9a8dba92179b9a8 (patch)
tree842b38421b3b4e516e796d883b19110fe8fec9be
parentd064c70bc63ad742d11625e485c1dc1631f6e303 (diff)
Remove an inapplicable and completely out of place comment. The type is in fact 'bool'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130652 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Sema/SemaExprCXX.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaExprCXX.cpp b/lib/Sema/SemaExprCXX.cpp
index 9f1329717f..2ad59e74f2 100644
--- a/lib/Sema/SemaExprCXX.cpp
+++ b/lib/Sema/SemaExprCXX.cpp
@@ -3030,7 +3030,7 @@ ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET,
}
bool Value = EvaluateExpressionTrait(ET, Queried);
- // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
+
return Owned(new (Context) ExpressionTraitExpr(KWLoc, ET, Queried, Value,
RParen, Context.BoolTy));
}