[cfe-commits] r133571 - /cfe/trunk/lib/Sema/SemaChecking.cpp
Chandler Carruth
chandlerc at gmail.com
Tue Jun 21 16:04:20 PDT 2011
Author: chandlerc
Date: Tue Jun 21 18:04:20 2011
New Revision: 133571
URL: http://llvm.org/viewvc/llvm-project?rev=133571&view=rev
Log:
Fix some grammar nits in the comments from Nick.
Modified:
cfe/trunk/lib/Sema/SemaChecking.cpp
Modified: cfe/trunk/lib/Sema/SemaChecking.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaChecking.cpp?rev=133571&r1=133570&r2=133571&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaChecking.cpp (original)
+++ cfe/trunk/lib/Sema/SemaChecking.cpp Tue Jun 21 18:04:20 2011
@@ -1857,7 +1857,7 @@
return false;
}
-/// \brief If E is a sizeof expression returns the argument expression,
+/// \brief If E is a sizeof expression, returns its argument expression,
/// otherwise returns NULL.
static const Expr *getSizeOfExprArg(const Expr* E) {
if (const UnaryExprOrTypeTraitExpr *SizeOf =
@@ -1868,7 +1868,7 @@
return 0;
}
-/// \brief If E is a sizeof expression returns the argument type.
+/// \brief If E is a sizeof expression, returns its argument type.
static QualType getSizeOfArgType(const Expr* E) {
if (const UnaryExprOrTypeTraitExpr *SizeOf =
dyn_cast<UnaryExprOrTypeTraitExpr>(E))
More information about the cfe-commits
mailing list