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

Unified Diff: third_party/icu/public/common/unicode/utypes.h

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
« no previous file with comments | « no previous file | third_party/icu/source/common/normalizer2.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/icu/public/common/unicode/utypes.h
===================================================================
--- third_party/icu/public/common/unicode/utypes.h (revision 74230)
+++ third_party/icu/public/common/unicode/utypes.h (working copy)
@@ -861,5 +861,12 @@
U_STABLE const char * U_EXPORT2
u_errorName(UErrorCode code);
+// The following two macros are used in place of dynamic_cast and typeid
+// to build ICU 4.6 without RTTI enabled. This build won't run properly,
+// but will only be used as a reference build to measure the size impact of
+// enabling RTTI.
+#define CR_DYNAMIC_CAST static_cast
+#define CR_TYPEID(o) ((o).getDynamicClassID())
+
#endif /* _UTYPES */
« no previous file with comments | « no previous file | third_party/icu/source/common/normalizer2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698