mirror of
https://github.com/boostorg/uuid.git
synced 2026-01-19 04:42:16 +00:00
Add charN_t support to to_chars
This commit is contained in:
@@ -59,5 +59,17 @@ int main()
|
||||
test( u2, L"00010203-0405-0607-0809-0a0b0c0d0e0f" );
|
||||
test( u3, L"12345678-90ab-cdef-1234-567890abcdef" );
|
||||
|
||||
test( u1, u"00000000-0000-0000-0000-000000000000" );
|
||||
test( u2, u"00010203-0405-0607-0809-0a0b0c0d0e0f" );
|
||||
test( u3, u"12345678-90ab-cdef-1234-567890abcdef" );
|
||||
|
||||
test( u1, U"00000000-0000-0000-0000-000000000000" );
|
||||
test( u2, U"00010203-0405-0607-0809-0a0b0c0d0e0f" );
|
||||
test( u3, U"12345678-90ab-cdef-1234-567890abcdef" );
|
||||
|
||||
test( u1, u8"00000000-0000-0000-0000-000000000000" );
|
||||
test( u2, u8"00010203-0405-0607-0809-0a0b0c0d0e0f" );
|
||||
test( u3, u8"12345678-90ab-cdef-1234-567890abcdef" );
|
||||
|
||||
return boost::report_errors();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user