blob: 560d43f8d621625ce603a2b4d652b9bc49beca18 [file] [log] [blame]
.. title:: clang-tidy - misc-static-assert
misc-static-assert
==================
`cert-dcl03-c` redirects here as an alias for this check.
Replaces ``assert()`` with ``static_assert()`` if the condition is evaluable
at compile time.
The condition of ``static_assert()`` is evaluated at compile time which is
safer and more efficient.