brintos

brintos / llvm-project-archived public Read only

0
0
Text · 338 B · 560d43f Raw
13 lines · plain
1.. title:: clang-tidy - misc-static-assert2 3misc-static-assert4==================5 6`cert-dcl03-c` redirects here as an alias for this check.7 8Replaces ``assert()`` with ``static_assert()`` if the condition is evaluable9at compile time.10 11The condition of ``static_assert()`` is evaluated at compile time which is12safer and more efficient.13