Skip to content

Commit 64eb5b4

Browse files
berndhahnebachaothms
authored andcommitted
namespace fix for debian buster, fixes issue IfcOpenShell#506
1 parent 116de5d commit 64eb5b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ifcparse/IfcCharacterDecoder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void IfcCharacterDecoder::addChar(std::stringstream& s,const UChar32& ch) {
8181
maximum length in bytes is 4. We add 1 for the NUL character. In other encodings
8282
the length could be higher, but we have not taken that into account. */
8383
char extraction_buffer[5] = {};
84-
UnicodeString(ch).extract(extraction_buffer,5,destination,status);
84+
icu::UnicodeString(ch).extract(extraction_buffer,5,destination,status);
8585
extraction_buffer[4] = '\0';
8686
s << extraction_buffer;
8787
} else {

0 commit comments

Comments
 (0)