Skip to content

Commit

Permalink
Show patch version in the version string (#1229)
Browse files Browse the repository at this point in the history
Signed-off-by: Isaev, Ilya <[email protected]>
  • Loading branch information
isaevil authored Oct 19, 2023
1 parent 8370742 commit ddfc32d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/oneapi/tbb/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@
// Suffix string
#define __TBB_VERSION_SUFFIX ""
// Full official version string
#define TBB_VERSION_STRING __TBB_STRING(TBB_VERSION_MAJOR) "." __TBB_STRING(TBB_VERSION_MINOR) __TBB_VERSION_SUFFIX
#define TBB_VERSION_STRING \
__TBB_STRING(TBB_VERSION_MAJOR) "." \
__TBB_STRING(TBB_VERSION_MINOR) "." \
__TBB_STRING(TBB_VERSION_PATCH) \
__TBB_VERSION_SUFFIX

// OneAPI oneTBB specification version
#define ONETBB_SPEC_VERSION "1.0"
Expand Down

0 comments on commit ddfc32d

Please sign in to comment.