Chromium Code Reviews

Unified Diff: third_party/icu/source/i18n/nfsubs.cpp

Issue 6484008: Enable RTTI for ICU.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: use _MSC_VERSION for conditional include on Win Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/icu/source/i18n/nfsubs.cpp
===================================================================
--- third_party/icu/source/i18n/nfsubs.cpp (revision 74374)
+++ third_party/icu/source/i18n/nfsubs.cpp (working copy)
@@ -14,6 +14,10 @@
*/
#include <stdio.h>
+#if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS
+#include <exception>
+using std::exception;
+#endif
#include <typeinfo> // for 'typeid' to work
#include "nfsubs.h"

Powered by Google App Engine