summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-02-06 23:46:02 +0100
committerJulien Nabet <serval2412@yahoo.fr>2020-02-07 14:53:36 +0100
commit6a1cee7b09d8f75648483d6537e697a70daa52c3 (patch)
treece7dada3459be29f09ec88f793638b689aad3249 /compilerplugins
parent88fc1e0b3be8239bda2b6daf58f0e34936ad9e1b (diff)
Fix typo
Change-Id: Ia1cd4fc4e6f5cfbf327132cdd499cb42c1f7d3e9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88148 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/comparisonwithconstant.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/comparisonwithconstant.cxx b/compilerplugins/clang/comparisonwithconstant.cxx
index 6abe08b5fab7..6787be87424d 100644
--- a/compilerplugins/clang/comparisonwithconstant.cxx
+++ b/compilerplugins/clang/comparisonwithconstant.cxx
@@ -34,7 +34,7 @@ public:
}
// Deliberately drop RecursiveASTVisitor::TraverseBinEQ's DataRecursionQueue
- // parameter; TraveseBinEQ must use stack instead of data recursion for any
+ // parameter; TraverseBinEQ must use stack instead of data recursion for any
// children's VisitBinaryOperator to see changes to occurrence_ by a parent
// VisitBinaryOperator:
bool TraverseBinEQ(BinaryOperator * S)
@@ -46,7 +46,7 @@ public:
}
// Deliberately drop RecursiveASTVisitor::TraverseBinNE's DataRecursionQueue
- // parameter; TraveseBinNE must use stack instead of data recursion for any
+ // parameter; TraverseBinNE must use stack instead of data recursion for any
// children's VisitBinaryOperator to see changes to occurrence_ by a parent
// VisitBinaryOperator:
bool TraverseBinNE(BinaryOperator * S)