1 .. title:: clang-tidy - misc-static-assert
6 `cert-dcl03-c` redirects here as an alias for this check.
8 Replaces ``assert()`` with ``static_assert()`` if the condition is evaluable
11 The condition of ``static_assert()`` is evaluated at compile time which is
12 safer and more efficient.