[libcxx-commits] [pstl] r366491 - [pstl] Fix test that checked the version number after version bump
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 18 13:21:59 PDT 2019
Author: ldionne
Date: Thu Jul 18 13:21:59 2019
New Revision: 366491
URL: http://llvm.org/viewvc/llvm-project?rev=366491&view=rev
Log:
[pstl] Fix test that checked the version number after version bump
Modified:
pstl/trunk/test/pstl/version.pass.cpp
Modified: pstl/trunk/test/pstl/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/pstl/trunk/test/pstl/version.pass.cpp?rev=366491&r1=366490&r2=366491&view=diff
==============================================================================
--- pstl/trunk/test/pstl/version.pass.cpp (original)
+++ pstl/trunk/test/pstl/version.pass.cpp Thu Jul 18 13:21:59 2019
@@ -9,8 +9,8 @@
#include <pstl/internal/pstl_config.h>
-static_assert(_PSTL_VERSION == 9000);
-static_assert(_PSTL_VERSION_MAJOR == 9);
+static_assert(_PSTL_VERSION == 10000);
+static_assert(_PSTL_VERSION_MAJOR == 10);
static_assert(_PSTL_VERSION_MINOR == 00);
static_assert(_PSTL_VERSION_PATCH == 0);
More information about the libcxx-commits
mailing list