Merge pull request #9896 from hercules-ci/tidy-tidy

Disable a slightly annoying clang-tidy check
This commit is contained in:
Eelco Dolstra 2024-02-01 09:02:46 +01:00 committed by GitHub
commit ef6d055ace
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

3
.clang-tidy Normal file
View File

@ -0,0 +1,3 @@
# We use pointers to aggregates in a couple of places, intentionally.
# void * would look weird.
Checks: '-bugprone-sizeof-expression'

View File

@ -116,7 +116,7 @@ private:
WeakGoals waitingForAWhile;
/**
* Last time the goals in `waitingForAWhile` where woken up.
* Last time the goals in `waitingForAWhile` were woken up.
*/
steady_time_point lastWokenUp;