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

Side by Side Diff: third_party/icu/source/i18n/olsontz.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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 ********************************************************************** 2 **********************************************************************
3 * Copyright (c) 2003-2010, International Business Machines 3 * Copyright (c) 2003-2010, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ********************************************************************** 5 **********************************************************************
6 * Author: Alan Liu 6 * Author: Alan Liu
7 * Created: July 21 2003 7 * Created: July 21 2003
8 * Since: ICU 2.8 8 * Since: ICU 2.8
9 ********************************************************************** 9 **********************************************************************
10 */ 10 */
11 11
12 #if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS
13 #include <exception>
14 using std::exception;
15 #endif
12 #include <typeinfo> // for 'typeid' to work 16 #include <typeinfo> // for 'typeid' to work
13 17
14 #include "olsontz.h" 18 #include "olsontz.h"
15 19
16 #if !UCONFIG_NO_FORMATTING 20 #if !UCONFIG_NO_FORMATTING
17 21
18 #include "unicode/ures.h" 22 #include "unicode/ures.h"
19 #include "unicode/simpletz.h" 23 #include "unicode/simpletz.h"
20 #include "unicode/gregocal.h" 24 #include "unicode/gregocal.h"
21 #include "gregoimp.h" 25 #include "gregoimp.h"
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 } 1051 }
1048 // Set the result length 1052 // Set the result length
1049 trscount = cnt; 1053 trscount = cnt;
1050 } 1054 }
1051 1055
1052 U_NAMESPACE_END 1056 U_NAMESPACE_END
1053 1057
1054 #endif // !UCONFIG_NO_FORMATTING 1058 #endif // !UCONFIG_NO_FORMATTING
1055 1059
1056 //eof 1060 //eof
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698