Marks conditionally-used params in argument annotation framework [[maybe_unused]]#9225
Conversation
dd98a83 to
3068abb
Compare
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
SummaryThis PR marks conditionally-used parameters in the argument annotation framework with the ChangesFile:
RationaleThe parameters of both validation functions are referenced only inside Walkthroughsuggestion: This PR adds [[maybe_unused]] annotations to parameters in two internal validation helper functions in the argument header. The ChangesValidation helper parameter annotations
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
3068abb to
b571d2b
Compare
This comment has been minimized.
This comment has been minimized.
🥳 CI Workflow Results🟩 Finished in 2h 45m: Pass: 100%/115 | Total: 18h 51m | Max: 52m 02s | Hits: 97%/345241See results here. |
Marks the conditionally-used parameters of
__validate_static_element_boundsand__validate_runtime_element_boundsin the argument annotation framework as[[maybe_unused]]. Those parameters are only referenced inside _CCCL_ASSERT/if constexpr, so they are unused and trip aunused-parameterwhen the assertions compile out .