summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-05-19 16:25:57 +0200
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-21 12:59:32 +0200
commite1e3def8cc15380ff761ba46032bbfadd80d43c8 (patch)
tree1a59f6ef9815d8b1739617794850f8f6e2f160bd /compilerplugins
parent68d7364dfbed50a802e61bf94493510405367b31 (diff)
Fix typos
Change-Id: I438b6719817e0bbb47370ec54561eed2bc402cba Reviewed-on: https://gerrit.libreoffice.org/37783 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
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 180e45df3a5c..935174625226 100644
--- a/compilerplugins/clang/comparisonwithconstant.cxx
+++ b/compilerplugins/clang/comparisonwithconstant.cxx
@@ -33,7 +33,7 @@ public:
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}
- // Deliberatley drop RecursiveASTVisitor::TraverseBinEQ's DataRecursionQueue
+ // Deliberately drop RecursiveASTVisitor::TraverseBinEQ's DataRecursionQueue
// parameter; TraveseBinEQ must use stack instead of data recursion for any
// children's VisitBinaryOperator to see changes to occurrence_ by a parent
// VisitBinaryOperator:
@@ -45,7 +45,7 @@ public:
return ret;
}
- // Deliberatley drop RecursiveASTVisitor::TraverseBinNE's DataRecursionQueue
+ // Deliberately drop RecursiveASTVisitor::TraverseBinNE's DataRecursionQueue
// parameter; TraveseBinNE must use stack instead of data recursion for any
// children's VisitBinaryOperator to see changes to occurrence_ by a parent
// VisitBinaryOperator: