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

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

Issue 6484008: Enable RTTI for ICU.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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 | « third_party/icu/icu.gyp ('k') | third_party/icu/source/common/rbbi.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/utypeinfo.h
===================================================================
--- third_party/icu/public/common/unicode/utypeinfo.h (revision 0)
+++ third_party/icu/public/common/unicode/utypeinfo.h (revision 0)
@@ -0,0 +1,12 @@
+#ifndef UTYPEINFO_H
+#define UTYPEINFO_H
+
+#if defined(_MSC_VER) && _HAS_EXCEPTIONS == 0
+// Visual C++ needs the following two lines when RTTI is on with
+// exception handling disabled.
+#include <exception>
+using std::exception;
+#endif
+#include <typeinfo> // for typeid to work.
+
+#endif
Property changes on: third_party\icu\public\common\unicode\utypeinfo.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « third_party/icu/icu.gyp ('k') | third_party/icu/source/common/rbbi.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698