Skip to content

Commit 273d028

Browse files
committed
debuging fix
Signed-off-by: Dan Hoeflinger <dan.hoeflinger@intel.com>
1 parent 4ef4f52 commit 273d028

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

test/parallel_api/algorithm/alg.nonmodifying/for_each.pass.cpp

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@
2525
#define FOR_EACH_N
2626
#endif
2727

28-
#if defined(_MSC_VER)
29-
#pragma message("_MSVC_LANG=" _ONEDPL_STRINGIFY(_MSVC_LANG))
30-
#pragma message("__cplusplus=" _ONEDPL_STRINGIFY(__cplusplus))
31-
#pragma message("_ONEDPL___cplusplus="
32-
_ONEDPL_STRINGIFY(_ONEDPL___cplusplus))
33-
#endif
34-
28+
29+
#if defined(_MSC_VER)
30+
#define STRINGIZE(x) #x
31+
#define SH(x) STRINGIZE(x)
32+
#pragma message("_MSVC_LANG=" SH(_MSVC_LANG))
33+
#pragma message("__cplusplus=" SH(__cplusplus))
34+
#pragma message("_ONEDPL___cplusplus=" SH(_ONEDPL___cplusplus))
35+
#endif
36+
3537

3638
using namespace TestUtils;
3739

0 commit comments

Comments
 (0)