namespace fix for debian buster, fixes issue #506

This commit is contained in:
Bernd Hahnebach
2018-11-19 17:48:35 +01:00
committed by Thomas Krijnen
parent 116de5daec
commit 64eb5b4d1d
+1 -1
View File
@@ -81,7 +81,7 @@ void IfcCharacterDecoder::addChar(std::stringstream& s,const UChar32& ch) {
maximum length in bytes is 4. We add 1 for the NUL character. In other encodings
the length could be higher, but we have not taken that into account. */
char extraction_buffer[5] = {};
UnicodeString(ch).extract(extraction_buffer,5,destination,status);
icu::UnicodeString(ch).extract(extraction_buffer,5,destination,status);
extraction_buffer[4] = '\0';
s << extraction_buffer;
} else {