third_party.pigweed.src/pw_assert_basic/docs.rst
Keir Mierle c1cb12d67b pw_assert: Add design discussion to docs
This enhances the assert documentation with information about tradeoffs
considered while designing the module. Additionally, provides some
guidance to be more explicit that PW_CHECK(a < b) shouldn't be used, and
instead PW_CHECK_INT_LT(a, b) should be used.

Change-Id: I421700bfa85cb34c874c999245c201cb3337ebb4
2020-06-03 22:45:54 +00:00

16 lines
224 B
ReStructuredText

.. default-domain:: cpp
.. highlight:: cpp
.. _chapter-pw-assert-basic:
===============
pw_assert_basic
===============
--------
Overview
--------
This is a simple assert backend to complement the ``pw_assert`` facade.