From 478215e9e692e395aecb226a7ba7dfe38f5b353f Mon Sep 17 00:00:00 2001 From: Alexey Kukanov Date: Mon, 30 Sep 2024 21:37:07 +0200 Subject: [PATCH] Address review feedback --- source/elements/oneDPL/source/common.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/elements/oneDPL/source/common.rst b/source/elements/oneDPL/source/common.rst index e950afd3b..92f4f5337 100644 --- a/source/elements/oneDPL/source/common.rst +++ b/source/elements/oneDPL/source/common.rst @@ -37,8 +37,8 @@ if that is available. -- *end example*] Version Information +++++++++++++++++++ -A oneDPL implementation must define a preprocessor macro representing the version -of the oneDPL specification that the implementation is compliant with. +A oneDPL implementation must define the following preprocessor macro representing +the version of the oneDPL specification that the implementation is compliant with. .. code:: cpp @@ -46,7 +46,7 @@ of the oneDPL specification that the implementation is compliant with. #define ONEDPL_SPEC_VERSION /*implementation-defined*/ -The ``ONEDPL_SPEC_VERSION`` macro must be defined to the decimal literal which value equals to +The ``ONEDPL_SPEC_VERSION`` macro must be defined to the decimal literal whose value equals to *major-spec-version* * 100 + *minor-spec-version*, where *major-spec-version* and *minor-spec-version* are the major and the minor versions of the latest fully supported specification. [*Example*: ``#define ONEDPL_SPEC_VERSION 104`` for the oneDPL specification 1.4. -- *end example*]