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

Side by Side Diff: third_party/icu/source/i18n/calendar.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 CALENDAR.CPP 7 * File CALENDAR.CPP
8 * 8 *
9 * Modification History: 9 * Modification History:
10 * 10 *
11 * Date Name Description 11 * Date Name Description
12 * 02/03/97 clhuang Creation. 12 * 02/03/97 clhuang Creation.
13 * 04/22/97 aliu Cleaned up, fixed memory leak, made 13 * 04/22/97 aliu Cleaned up, fixed memory leak, made
14 * setWeekCountData() more robust. 14 * setWeekCountData() more robust.
15 * Moved platform code to TPlatformUtilities. 15 * Moved platform code to TPlatformUtilities.
16 * 05/01/97 aliu Made equals(), before(), after() arguments const. 16 * 05/01/97 aliu Made equals(), before(), after() arguments const.
17 * 05/20/97 aliu Changed logic of when to compute fields and time 17 * 05/20/97 aliu Changed logic of when to compute fields and time
18 * to fix bugs. 18 * to fix bugs.
19 * 08/12/97 aliu Added equivalentTo. Misc other fixes. 19 * 08/12/97 aliu Added equivalentTo. Misc other fixes.
20 * 07/28/98 stephen Sync up with JDK 1.2 20 * 07/28/98 stephen Sync up with JDK 1.2
21 * 09/02/98 stephen Sync with JDK 1.2 8/31 build (getActualMin/Max) 21 * 09/02/98 stephen Sync with JDK 1.2 8/31 build (getActualMin/Max)
22 * 03/17/99 stephen Changed adoptTimeZone() - now fAreFieldsSet is 22 * 03/17/99 stephen Changed adoptTimeZone() - now fAreFieldsSet is
23 * set to FALSE to force update of time. 23 * set to FALSE to force update of time.
24 ******************************************************************************* 24 *******************************************************************************
25 */ 25 */
26 26
27 #if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS
28 #include <exception>
29 using std::exception;
30 #endif
27 #include <typeinfo> // for 'typeid' to work 31 #include <typeinfo> // for 'typeid' to work
28 32
29 #include "unicode/utypes.h" 33 #include "unicode/utypes.h"
30 34
31 #if !UCONFIG_NO_FORMATTING 35 #if !UCONFIG_NO_FORMATTING
32 36
33 #include "unicode/gregocal.h" 37 #include "unicode/gregocal.h"
34 #include "gregoimp.h" 38 #include "gregoimp.h"
35 #include "buddhcal.h" 39 #include "buddhcal.h"
36 #include "taiwncal.h" 40 #include "taiwncal.h"
(...skipping 3328 matching lines...) Expand 10 before | Expand all | Expand 10 after
3365 { 3369 {
3366 internalSet((UCalendarDateFields) field, value); 3370 internalSet((UCalendarDateFields) field, value);
3367 } 3371 }
3368 3372
3369 U_NAMESPACE_END 3373 U_NAMESPACE_END
3370 3374
3371 #endif /* #if !UCONFIG_NO_FORMATTING */ 3375 #endif /* #if !UCONFIG_NO_FORMATTING */
3372 3376
3373 3377
3374 //eof 3378 //eof
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698