mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 02:07:15 +00:00
ICU-9437 remove a now-unnecessary const_cast
X-SVN-Rev: 32290
This commit is contained in:
parent
5f781dc97e
commit
582b65abf1
1 changed files with 1 additions and 2 deletions
|
@ -176,8 +176,7 @@ void UCAConformanceTest::testConformance(const Collator *coll)
|
|||
return;
|
||||
}
|
||||
uint32_t skipFlags = 0;
|
||||
// TODO: remove const_cast when merging to trunk
|
||||
if(const_cast<Collator *>(coll)->getAttribute(UCOL_ALTERNATE_HANDLING, status) == UCOL_SHIFTED) {
|
||||
if(coll->getAttribute(UCOL_ALTERNATE_HANDLING, status) == UCOL_SHIFTED) {
|
||||
skipFlags |= IS_SHIFTED;
|
||||
}
|
||||
if(coll == rbUCA) {
|
||||
|
|
Loading…
Add table
Reference in a new issue