mirror of
https://github.com/boostorg/regex.git
synced 2025-07-23 00:57:19 +02:00
Modified wide character tests to warn not fail when no wide character support is available in the platform.
Modified Jamfiles to use centralised options. Added wide character concept check. [SVN r19318]
This commit is contained in:
@ -85,7 +85,17 @@ int main()
|
||||
}
|
||||
|
||||
#else
|
||||
# error "This library has not been configured for wide character support"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout <<
|
||||
"\n<note>\n"
|
||||
"This platform does not provide the needed wide character support for this test.\n"
|
||||
"</note>\n";
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user