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/enttest.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/enttest.c')
| -rw-r--r-- | unicode/enttest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicode/enttest.c b/unicode/enttest.c index aa9f208..8db070a 100644 --- a/unicode/enttest.c +++ b/unicode/enttest.c @@ -8,7 +8,7 @@ struct i { size_t n_start; size_t n_size; - unicode_char v; + char32_t v; }; #include "unicode_htmlent.h" |
