diff options
| author | Sam Varshavchik | 2017-03-06 19:51:02 -0500 | 
|---|---|---|
| committer | Sam Varshavchik | 2017-03-06 19:51:02 -0500 | 
| commit | f25724f8807dddededb347e4740bfed93fda7bf5 (patch) | |
| tree | f91dab87d22a2363fb95eca8071d9b72be1ea0cb /unicode/unicodetest.c | |
| parent | 7b444198abbc9d46d1ae191f3153b959a13b11a1 (diff) | |
| download | courier-libs-f25724f8807dddededb347e4740bfed93fda7bf5.tar.bz2 | |
courier-unicode: C++11 update.
* Migrate to C++11: remove unicode_char, use char32_t. Replace
std::vector<unicode_char> with std::u32string.
Diffstat (limited to 'unicode/unicodetest.c')
| -rw-r--r-- | unicode/unicodetest.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/unicode/unicodetest.c b/unicode/unicodetest.c index 7048f51..b59fab3 100644 --- a/unicode/unicodetest.c +++ b/unicode/unicodetest.c @@ -70,7 +70,7 @@ static void test1()  static void test2()  { -	unicode_char *ucptr; +	char32_t *ucptr;  	size_t ucsize;  	unicode_convert_handle_t h=  		unicode_convert_tou_init("utf-8", &ucptr, &ucsize, 1); | 
