2
0
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:
Peter Dimov
2024-05-04 18:19:07 +03:00
parent 34eb75ce98
commit 2480bedcea
3 changed files with 33 additions and 12 deletions

View File

@@ -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();
}