summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-06-06 16:30:51 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-07 07:07:36 +0200
commita9d67bbb4bf0c1854081a78dc362dc9dac9c92e0 (patch)
tree053ee88419671b45291261539bcaaa8bdf0d9a97
parent93bc4fe0355ef7e6d5b5de3dd72251861409d208 (diff)
Fix typos
Change-Id: If9d52bd769d96865a3fbfdda1f339bbd0f8c3ca3 Reviewed-on: https://gerrit.libreoffice.org/73633 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--compilerplugins/clang/typedefparam.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/compilerplugins/clang/typedefparam.cxx b/compilerplugins/clang/typedefparam.cxx
index 60c413f37988..0b7a74ba1696 100644
--- a/compilerplugins/clang/typedefparam.cxx
+++ b/compilerplugins/clang/typedefparam.cxx
@@ -258,9 +258,9 @@ static bool areTypesEqual(QualType lhs, QualType rhs)
//
// typedef __darwin_size_t size_t;
//
- // where __darwin_size_t is a typedef for long unsigned int, too, so that, depening on the
- // order in which those two files get inclued, either of those two typedefs can act as a
- // redeclaration of the other one. However, areTypesEqual would unhelpfuly consider such
+ // where __darwin_size_t is a typedef for long unsigned int, too, so that, depending on the
+ // order in which those two files get included, either of those two typedefs can act as a
+ // redeclaration of the other one. However, areTypesEqual would unhelpfully consider such
// different occurrences of size_t to be non-equal, so filter them out here. And, at least
// with my libcxx trunk .../include/c++/v1/cstddef, std::size_t is a using declaration that
// brings size_t from the global namespace into namespace std, so that the above checks for