From 27a5bcb1f4d3360b28930853e9ab0869f769009c Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 19 Apr 2024 13:28:21 +0100 Subject: [PATCH] TRy again with msvc config. --- module/regex.cxx | 2 +- module/regex_create_char.cpp | 2 +- module/regex_create_wchar_t.cpp | 2 +- module/regex_nc_sfind.cpp | 2 +- module/regex_nc_smatch.cpp | 2 +- module/regex_nc_wsfind.cpp | 2 +- module/regex_nc_wsmatch.cpp | 2 +- module/regex_sfind.cpp | 2 +- module/regex_smatch.cpp | 2 +- module/regex_wsfind.cpp | 2 +- module/regex_wsmatch.cpp | 2 +- test/module/credit_card_example.cpp | 2 +- test/module/partial_regex_grep.cpp | 2 +- test/module/partial_regex_iterate.cpp | 2 +- test/module/partial_regex_match.cpp | 2 +- test/module/regex_grep_example_1.cpp | 2 +- test/module/regex_grep_example_2.cpp | 2 +- test/module/regex_grep_example_3.cpp | 2 +- test/module/regex_iterator_example.cpp | 2 +- test/module/regex_match_example.cpp | 2 +- test/module/regex_merge_example.cpp | 2 +- test/module/regex_replace_example.cpp | 2 +- test/module/regex_search_example.cpp | 2 +- test/module/regex_split_example_1.cpp | 2 +- test/module/regex_split_example_2.cpp | 2 +- test/module/regex_token_iterator_eg_1.cpp | 2 +- test/module/regex_token_iterator_eg_2.cpp | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/module/regex.cxx b/module/regex.cxx index 29d3bff8..c23d0caa 100644 --- a/module/regex.cxx +++ b/module/regex.cxx @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_create_char.cpp b/module/regex_create_char.cpp index 63e21a83..ec216464 100644 --- a/module/regex_create_char.cpp +++ b/module/regex_create_char.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_create_wchar_t.cpp b/module/regex_create_wchar_t.cpp index 90b8fafe..074993da 100644 --- a/module/regex_create_wchar_t.cpp +++ b/module/regex_create_wchar_t.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_nc_sfind.cpp b/module/regex_nc_sfind.cpp index bc52559e..bed2018e 100644 --- a/module/regex_nc_sfind.cpp +++ b/module/regex_nc_sfind.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_nc_smatch.cpp b/module/regex_nc_smatch.cpp index fc933825..2208a248 100644 --- a/module/regex_nc_smatch.cpp +++ b/module/regex_nc_smatch.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_nc_wsfind.cpp b/module/regex_nc_wsfind.cpp index ffeda38f..36c76cb7 100644 --- a/module/regex_nc_wsfind.cpp +++ b/module/regex_nc_wsfind.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_nc_wsmatch.cpp b/module/regex_nc_wsmatch.cpp index b4320903..4bae4590 100644 --- a/module/regex_nc_wsmatch.cpp +++ b/module/regex_nc_wsmatch.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_sfind.cpp b/module/regex_sfind.cpp index 51bde076..7de3d234 100644 --- a/module/regex_sfind.cpp +++ b/module/regex_sfind.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_smatch.cpp b/module/regex_smatch.cpp index fd50e47b..aed05620 100644 --- a/module/regex_smatch.cpp +++ b/module/regex_smatch.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_wsfind.cpp b/module/regex_wsfind.cpp index 65c8dcf3..12bef7da 100644 --- a/module/regex_wsfind.cpp +++ b/module/regex_wsfind.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/module/regex_wsmatch.cpp b/module/regex_wsmatch.cpp index 65a3ef6c..691882f3 100644 --- a/module/regex_wsmatch.cpp +++ b/module/regex_wsmatch.cpp @@ -1,7 +1,7 @@ module; -#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523)) +#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135)) #define BOOST_REGEX_USE_STD_MODULE #endif diff --git a/test/module/credit_card_example.cpp b/test/module/credit_card_example.cpp index 9d56f90b..727b1157 100644 --- a/test/module/credit_card_example.cpp +++ b/test/module/credit_card_example.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: Credit card number formatting code. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/partial_regex_grep.cpp b/test/module/partial_regex_grep.cpp index e4fcd8d4..38cb3e47 100644 --- a/test/module/partial_regex_grep.cpp +++ b/test/module/partial_regex_grep.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: Search example using partial matches. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/partial_regex_iterate.cpp b/test/module/partial_regex_iterate.cpp index c0099d0d..1e41b601 100644 --- a/test/module/partial_regex_iterate.cpp +++ b/test/module/partial_regex_iterate.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: Search example using partial matches. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/partial_regex_match.cpp b/test/module/partial_regex_match.cpp index fa61ab97..3581eefb 100644 --- a/test/module/partial_regex_match.cpp +++ b/test/module/partial_regex_match.cpp @@ -19,7 +19,7 @@ //#include -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_grep_example_1.cpp b/test/module/regex_grep_example_1.cpp index 131e538a..90814b59 100644 --- a/test/module/regex_grep_example_1.cpp +++ b/test/module/regex_grep_example_1.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: regex_grep example 1: searches a cpp file for class definitions. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_grep_example_2.cpp b/test/module/regex_grep_example_2.cpp index 71d30c8d..aa852618 100644 --- a/test/module/regex_grep_example_2.cpp +++ b/test/module/regex_grep_example_2.cpp @@ -17,7 +17,7 @@ * using a global callback function. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_grep_example_3.cpp b/test/module/regex_grep_example_3.cpp index 35698dc5..87369ba6 100644 --- a/test/module/regex_grep_example_3.cpp +++ b/test/module/regex_grep_example_3.cpp @@ -17,7 +17,7 @@ * using a bound member function callback. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_iterator_example.cpp b/test/module/regex_iterator_example.cpp index 6568838c..855321e3 100644 --- a/test/module/regex_iterator_example.cpp +++ b/test/module/regex_iterator_example.cpp @@ -17,7 +17,7 @@ * using global data. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_match_example.cpp b/test/module/regex_match_example.cpp index 81dc8a49..9cb36039 100644 --- a/test/module/regex_match_example.cpp +++ b/test/module/regex_match_example.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: ftp based regex_match example. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_merge_example.cpp b/test/module/regex_merge_example.cpp index 056551ab..509637db 100644 --- a/test/module/regex_merge_example.cpp +++ b/test/module/regex_merge_example.cpp @@ -17,7 +17,7 @@ * converts a C++ file to syntax highlighted HTML. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_replace_example.cpp b/test/module/regex_replace_example.cpp index eeb2219d..e5f5d60c 100644 --- a/test/module/regex_replace_example.cpp +++ b/test/module/regex_replace_example.cpp @@ -17,7 +17,7 @@ * converts a C++ file to syntax highlighted HTML. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_search_example.cpp b/test/module/regex_search_example.cpp index 5f6c551a..72afe30a 100644 --- a/test/module/regex_search_example.cpp +++ b/test/module/regex_search_example.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: regex_search example: searches a cpp file for class definitions. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_split_example_1.cpp b/test/module/regex_split_example_1.cpp index 22057b3f..8963c7d8 100644 --- a/test/module/regex_split_example_1.cpp +++ b/test/module/regex_split_example_1.cpp @@ -17,7 +17,7 @@ */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) Simport std.core; diff --git a/test/module/regex_split_example_2.cpp b/test/module/regex_split_example_2.cpp index 2773a306..21bbeb5d 100644 --- a/test/module/regex_split_example_2.cpp +++ b/test/module/regex_split_example_2.cpp @@ -17,7 +17,7 @@ */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_token_iterator_eg_1.cpp b/test/module/regex_token_iterator_eg_1.cpp index f40a8fbc..d0f8473a 100644 --- a/test/module/regex_token_iterator_eg_1.cpp +++ b/test/module/regex_token_iterator_eg_1.cpp @@ -17,7 +17,7 @@ */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core; diff --git a/test/module/regex_token_iterator_eg_2.cpp b/test/module/regex_token_iterator_eg_2.cpp index af5618bc..7a20855c 100644 --- a/test/module/regex_token_iterator_eg_2.cpp +++ b/test/module/regex_token_iterator_eg_2.cpp @@ -16,7 +16,7 @@ * DESCRIPTION: regex_token_iterator example: spit out linked URL's. */ -#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))) && !defined(TEST_HEADERS) +#if (defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))) && !defined(TEST_HEADERS) import std; #elif defined(MSVC_EXPERIMENTAL_STD_MODULE) && !defined(TEST_HEADERS) import std.core;