diff options
| author | Sam Varshavchik | 2022-05-22 23:57:54 -0400 |
|---|---|---|
| committer | Sam Varshavchik | 2022-05-22 23:57:54 -0400 |
| commit | 545e97ccb9facf67865f8f758053d440e9076de0 (patch) | |
| tree | c95472629c757a5a24fd773338c51e98f24e613f /unicode/biditest2.C | |
| parent | 83e37efc8ed785cd095eb585ff747e5702ec49b3 (diff) | |
| download | courier-libs-545e97ccb9facf67865f8f758053d440e9076de0.tar.bz2 | |
Additional gcc 12 and C++20 fixes.
Diffstat (limited to 'unicode/biditest2.C')
| -rw-r--r-- | unicode/biditest2.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unicode/biditest2.C b/unicode/biditest2.C index 54a82a8..3399202 100644 --- a/unicode/biditest2.C +++ b/unicode/biditest2.C @@ -335,7 +335,7 @@ void character_test() std::cerr << " " << std::hex << std::setw(4) << std::setfill('0') - << s[i] << "/" + << (unsigned long)s[i] << "/" << std::dec << (int)l[i]; } @@ -506,7 +506,7 @@ void character_test() default: std::cerr << std::hex << std::setw(4) << std::setfill('0') - << c; + << (unsigned long)c; break; } } |
