File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
lib/inc/sys_string/impl/platforms Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace sysstr::util
18
18
{
19
19
using storage_type = char16_t ;
20
20
using size_type = jsize;
21
- using hash_type = unsigned ;
21
+ using hash_type = size_t ;
22
22
using native_handle_type = jstring;
23
23
24
24
static constexpr size_type max_size = std::numeric_limits<jsize>::max() / sizeof (char16_t );
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace sysstr::util
18
18
{
19
19
using storage_type = char16_t ;
20
20
using size_type = size_t ;
21
- using hash_type = unsigned ;
21
+ using hash_type = size_t ;
22
22
23
23
static constexpr size_type max_size = std::numeric_limits<ptrdiff_t >::max() / sizeof (char16_t );
24
24
};
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ namespace sysstr::util
20
20
{
21
21
using storage_type = char ;
22
22
using size_type = size_t ;
23
- using hash_type = unsigned ;
23
+ using hash_type = size_t ;
24
24
25
25
static constexpr size_type max_size = std::numeric_limits<ptrdiff_t >::max() / sizeof (char );
26
26
};
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ namespace sysstr::util
19
19
{
20
20
using storage_type = char16_t ;
21
21
using size_type = size_t ;
22
- using hash_type = unsigned ;
22
+ using hash_type = size_t ;
23
23
24
24
static constexpr size_type max_size = std::numeric_limits<ptrdiff_t >::max() / sizeof (char16_t );
25
25
};
You can’t perform that action at this time.
0 commit comments