mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-1572 fix ambiguous constructor call
X-SVN-Rev: 7284
This commit is contained in:
parent
7afda52678
commit
da0fef51a8
1 changed files with 2 additions and 1 deletions
|
@ -96,7 +96,8 @@ UBool UnicodeSetTest::toPatternAux(UChar32 start, UChar32 end) {
|
|||
// TODO do these in hex
|
||||
//String source = "0x" + Integer.toString(start,16).toUpperCase();
|
||||
//if (start != end) source += "..0x" + Integer.toString(end,16).toUpperCase();
|
||||
UnicodeString source((uint32_t)start);
|
||||
UnicodeString source;
|
||||
source = source + (uint32_t)start;
|
||||
if (start != end)
|
||||
source = source + ".." + (uint32_t)end;
|
||||
UnicodeSet testSet;
|
||||
|
|
Loading…
Add table
Reference in a new issue