update example to represent recent style changes.

This commit is contained in:
Axel Kohlmeyer
2021-10-18 13:47:29 -04:00
parent 87b63f768f
commit 0e369fb9b5

View File

@ -29,7 +29,9 @@ of code in the header before include guards:
.. code-block:: c
#ifdef FIX_CLASS
FixStyle(print/vel,FixPrintVel)
// clang-format off
FixStyle(print/vel,FixPrintVel);
// clang-format on
#else
/* the definition of the FixPrintVel class comes here */
...