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

Side by Side Diff: third_party/icu/source/i18n/simpletz.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) 1997-2010, International Business Machines Corporation and 3 * Copyright (C) 1997-2010, International Business Machines Corporation and
4 * others. All Rights Reserved. 4 * others. All Rights Reserved.
5 ******************************************************************************* 5 *******************************************************************************
6 * 6 *
7 * File SIMPLETZ.H 7 * File SIMPLETZ.H
8 * 8 *
9 * Modification History: 9 * Modification History:
10 * 10 *
11 * Date Name Description 11 * Date Name Description
12 * 12/05/96 clhuang Creation. 12 * 12/05/96 clhuang Creation.
13 * 04/21/97 aliu Fixed miscellaneous bugs found by inspection and 13 * 04/21/97 aliu Fixed miscellaneous bugs found by inspection and
14 * testing. 14 * testing.
15 * 07/29/97 aliu Ported source bodies back from Java version with 15 * 07/29/97 aliu Ported source bodies back from Java version with
16 * numerous feature enhancements and bug fixes. 16 * numerous feature enhancements and bug fixes.
17 * 08/10/98 stephen JDK 1.2 sync. 17 * 08/10/98 stephen JDK 1.2 sync.
18 * 09/17/98 stephen Fixed getOffset() for last hour of year and DST 18 * 09/17/98 stephen Fixed getOffset() for last hour of year and DST
19 * 12/02/99 aliu Added TimeMode and constructor and setStart/EndRule 19 * 12/02/99 aliu Added TimeMode and constructor and setStart/EndRule
20 * methods that take TimeMode. Whitespace cleanup. 20 * methods that take TimeMode. Whitespace cleanup.
21 ******************************************************************************* * 21 ******************************************************************************* *
22 */ 22 */
23 23
24 #if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS
25 #include <exception>
26 using std::exception;
27 #endif
24 #include <typeinfo> // for 'typeid' to work 28 #include <typeinfo> // for 'typeid' to work
25 29
26 #include "unicode/utypes.h" 30 #include "unicode/utypes.h"
27 31
28 #if !UCONFIG_NO_FORMATTING 32 #if !UCONFIG_NO_FORMATTING
29 33
30 #include "unicode/simpletz.h" 34 #include "unicode/simpletz.h"
31 #include "unicode/gregocal.h" 35 #include "unicode/gregocal.h"
32 #include "unicode/smpdtfmt.h" 36 #include "unicode/smpdtfmt.h"
33 37
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after
1212 } 1216 }
1213 trscount = cnt; 1217 trscount = cnt;
1214 } 1218 }
1215 1219
1216 1220
1217 U_NAMESPACE_END 1221 U_NAMESPACE_END
1218 1222
1219 #endif /* #if !UCONFIG_NO_FORMATTING */ 1223 #endif /* #if !UCONFIG_NO_FORMATTING */
1220 1224
1221 //eof 1225 //eof
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698