wesnoth/.clang-tidy
JJ Marr 7ddd4ff02e Allow partial moving
The official C++ core guidelines policy is you must move rvalues.

This is inflexible in practice in the Wesnoth codebase.
2025-01-25 08:58:45 -05:00

8 lines
419 B
YAML

---
Checks: '-*,bugprone-move-forwarding-reference,bugprone-use-after-move,cppcoreguidelines-rvalue-reference-param-not-moved,modernize-use-nullptr,performance-move-const-arg,performance-move-constructor-init,performance-no-automatic-move,performance-unnecessary-value-param'
CheckOptions:
- key: cppcoreguidelines-rvalue-reference-param-not-moved.AllowPartialMove
value: true
WarningsAsErrors: true
...