[libcxx-commits] [PATCH] D111994: Change the PSTL Major version form 14 to 15 due to OpenMP backend

Mikhail Dvorskiy via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Oct 18 07:25:24 PDT 2021


MikeDvorskiy created this revision.
MikeDvorskiy added a reviewer: ldionne.
MikeDvorskiy created this object with visibility "All Users".
Herald added subscribers: guansong, yaxunl.
MikeDvorskiy requested review of this revision.
Herald added a reviewer: jdoerfert.
Herald added subscribers: libcxx-commits, sstefan1.
Herald added a project: libc++.
Herald added a reviewer: libc++.

Change the PSTL Major version form 14 to 15 due to OpenMP backend


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D111994

Files:
  pstl/include/pstl/internal/pstl_config.h


Index: pstl/include/pstl/internal/pstl_config.h
===================================================================
--- pstl/include/pstl/internal/pstl_config.h
+++ pstl/include/pstl/internal/pstl_config.h
@@ -13,7 +13,7 @@
 #include <__pstl_config_site>
 
 // The version is XYYZ, where X is major, YY is minor, and Z is patch (i.e. X.YY.Z)
-#define _PSTL_VERSION 14000
+#define _PSTL_VERSION 15000
 #define _PSTL_VERSION_MAJOR (_PSTL_VERSION / 1000)
 #define _PSTL_VERSION_MINOR ((_PSTL_VERSION % 1000) / 10)
 #define _PSTL_VERSION_PATCH (_PSTL_VERSION % 10)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111994.380389.patch
Type: text/x-patch
Size: 561 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20211018/a2384934/attachment.bin>


More information about the libcxx-commits mailing list