mirror of
https://github.com/boostorg/config.git
synced 2025-07-30 04:17:16 +02:00
Fix <regex> test case.
This commit is contained in:
@ -20,7 +20,7 @@ int test()
|
||||
using std::wregex;
|
||||
|
||||
regex e("\\d+");
|
||||
wregex we(L"\\s+");
|
||||
wregex we(L"\\d+");
|
||||
std::string s("123456");
|
||||
std::wstring ws(L"123456");
|
||||
return regex_match(s, e) && regex_match(ws, we) ? 0 : 1;
|
||||
|
Reference in New Issue
Block a user