Chromium Code Reviews

Side by Side Diff: third_party/icu/source/common/uniset_props.cpp

Issue 6520018: Get ICU 4.6 to be compiled without RTTI.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: do not include typeinfo at all Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « third_party/icu/source/common/uchriter.cpp ('k') | third_party/icu/source/common/ustrenum.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ******************************************************************************* 2 *******************************************************************************
3 * 3 *
4 * Copyright (C) 1999-2010, International Business Machines 4 * Copyright (C) 1999-2010, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ******************************************************************************* 7 *******************************************************************************
8 * file name: uniset_props.cpp 8 * file name: uniset_props.cpp
9 * encoding: US-ASCII 9 * encoding: US-ASCII
10 * tab size: 8 (not used) 10 * tab size: 8 (not used)
(...skipping 598 matching lines...)
609 literal = TRUE; 609 literal = TRUE;
610 // Fall through to handle literal '-' below 610 // Fall through to handle literal '-' below
611 } else { 611 } else {
612 chars.setPos(backup); // backup 612 chars.setPos(backup); // backup
613 continue; 613 continue;
614 } 614 }
615 } 615 }
616 } else if (symbols != 0) { 616 } else if (symbols != 0) {
617 const UnicodeFunctor *m = symbols->lookupMatcher(c); 617 const UnicodeFunctor *m = symbols->lookupMatcher(c);
618 if (m != 0) { 618 if (m != 0) {
619 const UnicodeSet *ms = dynamic_cast<const UnicodeSet *>(m); 619 const UnicodeSet *ms = CR_DYNAMIC_CAST<const UnicodeSet *>(m );
620 if (ms == NULL) { 620 if (ms == NULL) {
621 ec = U_MALFORMED_SET; 621 ec = U_MALFORMED_SET;
622 return; 622 return;
623 } 623 }
624 // casting away const, but `nested' won't be modified 624 // casting away const, but `nested' won't be modified
625 // (important not to modify stored set) 625 // (important not to modify stored set)
626 nested = const_cast<UnicodeSet*>(ms); 626 nested = const_cast<UnicodeSet*>(ms);
627 setMode = 3; 627 setMode = 3;
628 } 628 }
629 } 629 }
(...skipping 865 matching lines...)
1495 #endif 1495 #endif
1496 } 1496 }
1497 } 1497 }
1498 *this = foldSet; 1498 *this = foldSet;
1499 } 1499 }
1500 } 1500 }
1501 return *this; 1501 return *this;
1502 } 1502 }
1503 1503
1504 U_NAMESPACE_END 1504 U_NAMESPACE_END
OLDNEW
« no previous file with comments | « third_party/icu/source/common/uchriter.cpp ('k') | third_party/icu/source/common/ustrenum.cpp » ('j') | no next file with comments »

Powered by Google App Engine