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

Side by Side Diff: third_party/icu/source/i18n/timezone.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 TIMEZONE.CPP 7 * File TIMEZONE.CPP
8 * 8 *
9 * Modification History: 9 * Modification History:
10 * 10 *
(...skipping 17 matching lines...) Expand all
28 * 09/02/98 stephen Added getOffset(monthLen) and hasSameRules() 28 * 09/02/98 stephen Added getOffset(monthLen) and hasSameRules()
29 * 09/15/98 stephen Added getStaticClassID() 29 * 09/15/98 stephen Added getStaticClassID()
30 * 02/22/99 stephen Removed character literals for EBCDIC safety 30 * 02/22/99 stephen Removed character literals for EBCDIC safety
31 * 05/04/99 stephen Changed initDefault() for Mutex issues 31 * 05/04/99 stephen Changed initDefault() for Mutex issues
32 * 07/12/99 helena HPUX 11 CC Port. 32 * 07/12/99 helena HPUX 11 CC Port.
33 * 12/03/99 aliu Moved data out of static table into icudata.dll. 33 * 12/03/99 aliu Moved data out of static table into icudata.dll.
34 * Substantial rewrite of zone lookup, default zone, an d 34 * Substantial rewrite of zone lookup, default zone, an d
35 * available IDs code. Misc. cleanup. 35 * available IDs code. Misc. cleanup.
36 ******************************************************************************** */ 36 ******************************************************************************** */
37 37
38 #if defined(_MSC_VER) && defined(_HAS_EXCEPTIONS) && !_HAS_EXCEPTIONS
39 #include <exception>
40 using std::exception;
41 #endif
38 #include <typeinfo> // for 'typeid' to work 42 #include <typeinfo> // for 'typeid' to work
39 43
40 #include "unicode/utypes.h" 44 #include "unicode/utypes.h"
41 #include "unicode/ustring.h" 45 #include "unicode/ustring.h"
42 46
43 #ifdef U_DEBUG_TZ 47 #ifdef U_DEBUG_TZ
44 # include <stdio.h> 48 # include <stdio.h>
45 # include "uresimp.h" // for debugging 49 # include "uresimp.h" // for debugging
46 50
47 static void debug_tz_loc(const char *f, int32_t l) 51 static void debug_tz_loc(const char *f, int32_t l)
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 getCustomID(id, canonicalID, status); 1382 getCustomID(id, canonicalID, status);
1379 } 1383 }
1380 return canonicalID; 1384 return canonicalID;
1381 } 1385 }
1382 1386
1383 U_NAMESPACE_END 1387 U_NAMESPACE_END
1384 1388
1385 #endif /* #if !UCONFIG_NO_FORMATTING */ 1389 #endif /* #if !UCONFIG_NO_FORMATTING */
1386 1390
1387 //eof 1391 //eof
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698