Skip to content
Commit 6092176d authored by Chuyue Luo's avatar Chuyue Luo
Browse files

fix(tools): disable clang-tidy static assert check



This patch disables clang-tidy checks which suggest replacing calls to
assert() with static_assert():
lib/attestation/src/attestation_key.c:75 error: found assert() that
could be replaced by static_assert()
        assert(SIMD_IS_FPU_ALLOWED());
        ^~~~~~
        static_assert               , ""

The suggested fix is not possible because this will be a runtime check
when RMM_FPU_USE_AT_REL2 is enabled.

Signed-off-by: default avatarChuyue Luo <Chuyue.Luo@arm.com>
Change-Id: Iedeafd94581959438e40cd58ae8488862d7ca5dd
parent e0fc446f
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment