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

Side by Side Diff: third_party/icu/source/test/intltest/citrtest.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 * COPYRIGHT: 2 * COPYRIGHT:
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 * Modification History: 5 * Modification History:
6 * 6 *
7 * Date Name Description 7 * Date Name Description
8 * 05/22/2000 Madhu Added tests for testing new API for utf16 support and more 8 * 05/22/2000 Madhu Added tests for testing new API for utf16 support and more
9 ******************************************************************************* *********/ 9 ******************************************************************************* *********/
10 10
11 #include <string.h> 11 #include <string.h>
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 "unicode/chariter.h" 18 #include "unicode/chariter.h"
15 #include "unicode/ustring.h" 19 #include "unicode/ustring.h"
16 #include "unicode/unistr.h" 20 #include "unicode/unistr.h"
17 #include "unicode/schriter.h" 21 #include "unicode/schriter.h"
18 #include "unicode/uchriter.h" 22 #include "unicode/uchriter.h"
19 #include "unicode/uiter.h" 23 #include "unicode/uiter.h"
20 #include "unicode/putil.h" 24 #include "unicode/putil.h"
21 #include "citrtest.h" 25 #include "citrtest.h"
(...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 if(sci.firstPostInc()!=0x61) { 1182 if(sci.firstPostInc()!=0x61) {
1179 errln("SubStringCharIter.firstPostInc() failed\n"); 1183 errln("SubStringCharIter.firstPostInc() failed\n");
1180 } 1184 }
1181 1185
1182 // coverage: UCharCharacterIterator default constructor 1186 // coverage: UCharCharacterIterator default constructor
1183 SubUCharCharIter uci; 1187 SubUCharCharIter uci;
1184 if(uci.firstPostInc()!=0x61) { 1188 if(uci.firstPostInc()!=0x61) {
1185 errln("SubUCharCharIter.firstPostInc() failed\n"); 1189 errln("SubUCharCharIter.firstPostInc() failed\n");
1186 } 1190 }
1187 } 1191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698