1
0
Fork 0

Change to work with ICU 48

This commit is contained in:
a-brandt 2012-09-20 10:13:08 +02:00
parent 2b0224e652
commit cb3770a9ae
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
#include "Utf8Helper.h"
#ifdef TRI_HAVE_ICU
#include "BasicsC/utf8-helper.h"
#include "unicode/normalizer2.h"
#else
#include "string.h"
#endif
@ -160,7 +160,7 @@ v8::Handle<v8::Value> Utf8Helper::normalize (v8::Handle<v8::Value> obj) {
if (str_len > 0) {
#ifdef TRI_HAVE_ICU
UErrorCode erroCode = U_ZERO_ERROR;
const Normalizer2* normalizer = Normalizer2::getNFCInstance(erroCode);
const Normalizer2* normalizer = Normalizer2::getInstance(NULL, "nfc", UNORM2_COMPOSE ,erroCode);
if (U_FAILURE(erroCode)) {
LOGGER_ERROR << "error in Normalizer2::getNFCInstance(erroCode): " << u_errorName(erroCode);