diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-20 17:10:39 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-20 17:10:39 +0000 |
commit | c9e2a689054b63e2c02fddd27b1f508bd57451a3 (patch) | |
tree | be1d28c2bf954a313b59175b2c99a0634ff00c52 /clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp | |
parent | b1cc6d5603f68ab9bf62210078fb143404b71870 (diff) | |
download | bcm5719-llvm-c9e2a689054b63e2c02fddd27b1f508bd57451a3.tar.gz bcm5719-llvm-c9e2a689054b63e2c02fddd27b1f508bd57451a3.zip |
Clean up language and grammar.
Based on a patch by jfcaron3@gmail.com!
PR19806
llvm-svn: 209215
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp b/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp index 5106b06ca88..a61e658f69c 100644 --- a/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp @@ -47,7 +47,7 @@ void WalkAST::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E) { if (E->getKind() != UETT_SizeOf) return; - // If an explicit type is used in the code, usually the coder knows what he is + // If an explicit type is used in the code, usually the coder knows what they are // doing. if (E->isArgumentType()) return; |