From c0c14abca232527de4dddb549a9e25eddde390f8 Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Sat, 26 Mar 2022 23:33:26 +0100 Subject: [PATCH] Fix version history item numbering The last item in the 'New Features' section restarts the enumeration because the indention of the previous subitem is one space short. Change-Id: Ifa2873d3e2ddd6bac5034b48207775019ef1c462 --- docs/source/version_history.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index 6bd8da90d..b5baf41c6 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -46,19 +46,19 @@ New Features ``isinf``, ``isnormal``, ``isfinite``, ``fpclassify`` (new), ``fmin``, ``fmax`` - * It is now possible to safely compare a :class:`Jet` against a scalar - (or literal) without constructing a :class:`Jet` first (even if it's - nested): + * It is now possible to safely compare a :class:`Jet` against a scalar + (or literal) without constructing a :class:`Jet` first (even if it's + nested): - .. code-block:: c++ + .. code-block:: c++ - Jet, M>, O> x; - if (x == 2) { } // equivalent to x.a.a.a == 2 + Jet, M>, O> x; + if (x == 2) { } // equivalent to x.a.a.a == 2 - This enables interaction with various arithmetic functions that - expect a scalar like instance, such as ``boost::math::pow<-N>`` - for reciprocal computation. + This enables interaction with various arithmetic functions that + expect a scalar like instance, such as ``boost::math::pow<-N>`` + for reciprocal computation. #. Add :class:`NumericDiffFirstOrderFunction` (Sameer Agarwal) @@ -95,7 +95,7 @@ Bug Fixes & Minor Changes ``FindSuiteSparse.cmake`` (Brent Yi) #. Do not define unusable import targets (Sergiu Deitsch) #. Fix Ubuntu 18.04 shared library build (Sergiu Deitsch) -#. Force ``C++`` linker when building the ``C`` API (Sergiu Deitsch) +#. Force ``C++`` linker when building the ``C`` API (Sergiu Deitsch) #. Modernize the code to be inline with ``C++14`` (Sergiu Deitsch, Sameer Agarwal) #. Lots of fixes to make Ceres compile out of the box on Windows