mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
12 lines
175 B
C++
12 lines
175 B
C++
|
//
|
||
|
// This program is used to check if the compiler supports basic_string<wchar_t>
|
||
|
//
|
||
|
#include <string>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::basic_string<wchar_t> s(L"s");
|
||
|
return 0;
|
||
|
}
|
||
|
|