Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Unified Diff: third_party/icu/source/test/intltest/uobjtest.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/icu/source/test/intltest/uobjtest.cpp
===================================================================
--- third_party/icu/source/test/intltest/uobjtest.cpp (revision 74230)
+++ third_party/icu/source/test/intltest/uobjtest.cpp (working copy)
@@ -7,7 +7,6 @@
#include <stdio.h>
#include <string.h>
-#include <typeinfo> // for 'typeid' to work
#include "uobjtest.h"
#include "cmemory.h" // UAlignedMemory
@@ -568,15 +567,15 @@
dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(errorCode));
return;
}
- if (dynamic_cast<DecimalFormat *>(nf) == NULL || dynamic_cast<ChoiceFormat *>(nf) != NULL) {
- errln("dynamic_cast<>(NumberFormat) failed");
+ if (CR_DYNAMIC_CAST<DecimalFormat *>(nf) == NULL || CR_DYNAMIC_CAST<ChoiceFormat *>(nf) != NULL) {
+ errln("CR_DYNAMIC_CAST<>(NumberFormat) failed");
}
UnicodeSet emptySet;
- if (&typeid(*nf) == NULL || typeid(*nf) == typeid(UObject) || typeid(*nf) == typeid(Format) ||
- typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceFormat) ||
- typeid(*nf) == typeid(emptySet)
+ if (&CR_TYPEID(*nf) == NULL || CR_TYPEID(*nf) == CR_TYPEID(UObject) || CR_TYPEID(*nf) == CR_TYPEID(Format) ||
+ CR_TYPEID(*nf) != CR_TYPEID(DecimalFormat) || CR_TYPEID(*nf) == CR_TYPEID(ChoiceFormat) ||
+ CR_TYPEID(*nf) == CR_TYPEID(emptySet)
) {
- errln("typeid(NumberFormat) failed");
+ errln("CR_TYPEID(NumberFormat) failed");
}
delete nf;
}
« no previous file with comments | « third_party/icu/source/test/intltest/tztest.cpp ('k') | third_party/icu/source/tools/toolutil/xmlparser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698