nak: allow clippy::not_unsafe_ptr_arg_deref lints

Clippy errors on this, so just allow it here.

Fixes: b9c0e3c1ab ("nak: Add helpers for filling QMDs")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30323>
This commit is contained in:
Karol Herbst
2024-07-23 13:19:49 +02:00
committed by Marge Bot
parent 6d0273f67a
commit 526a572233

View File

@@ -37,6 +37,9 @@ nak_rust_args = [
'-Aclippy::upper_case_acronyms',
'-Aclippy::vec_box',
'-Aclippy::write_with_newline',
# warns about public function might dereference a raw pointer, but nothing is
# actually public here
'-Aclippy::not_unsafe_ptr_arg_deref',
'-Anon_snake_case',
]