mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-04 20:20:35 +00:00

The official C++ core guidelines policy is you must move rvalues. This is inflexible in practice in the Wesnoth codebase.
8 lines
419 B
YAML
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
|
|
...
|