Fix compilation errors of IfcCharacterEncoder in case ICU is not available

This commit is contained in:
Thomas Krijnen
2012-09-16 12:45:44 +00:00
parent cb6884b48e
commit 0814c16f06
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -77,10 +77,10 @@ namespace IfcWrite {
class IfcCharacterEncoder {
private:
std::string str;
#ifdef HAVE_ICU
static UErrorCode status;
static UConverter* converter;
std::string str;
#endif
public:
IfcCharacterEncoder(const std::string& input);