From: Louis Dionne Date: Thu, 18 Jul 2019 20:21:59 +0000 (+0000) Subject: [pstl] Fix test that checked the version number after version bump X-Git-Tag: llvmorg-11-init~14056 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96f497081351e01f70af275abbf98847d25a5158;p=platform%2Fupstream%2Fllvm.git [pstl] Fix test that checked the version number after version bump llvm-svn: 366491 --- diff --git a/pstl/test/pstl/version.pass.cpp b/pstl/test/pstl/version.pass.cpp index e57569b..84210de 100644 --- a/pstl/test/pstl/version.pass.cpp +++ b/pstl/test/pstl/version.pass.cpp @@ -9,8 +9,8 @@ #include -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);