Skip to content

Commit

Permalink
Update clang-tidy config for LLVM 19
Browse files Browse the repository at this point in the history
  • Loading branch information
ntadej committed Oct 10, 2024
1 parent fcd854f commit 7048468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Checks: >
-misc-include-cleaner,
-misc-no-recursion,
-misc-non-private-member-variables-in-classes,
-misc-use-internal-linkage,
-modernize-avoid-c-arrays,
-modernize-use-trailing-return-type,
-readability-convert-member-functions-to-static,
Expand Down
2 changes: 1 addition & 1 deletion test/widgets/gl_tester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void GLTester::initializeAnimation() {
int GLTester::selfTest() {
if (m_bearingAnimation) {
m_bearingAnimation->setDuration(kAnimationDuration);
m_bearingAnimation->setEndValue(map()->bearing() + 360 * 4);
m_bearingAnimation->setEndValue(map()->bearing() + (360 * 4));
m_bearingAnimation->start();
}

Expand Down

0 comments on commit 7048468

Please sign in to comment.