Replies: 1 comment
-
|
That error is likely because your description is not in UTF-8 encoding. ASCII strings will also work, as ASCII is a subset of UTF-8. Other common encodings, like Unfortunately, C++ has poor support character encodings. You'll need a third-party library to handle it, and I can't give much advice on that. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
When writing attribute to the blockmodel and adding description getting error like "required utf-8 string type". This is not consistent.
std::string str = "description data";
attribute.description = str.c_str();
The above code works fine sometimes. but sometimes getting error.
could you help on this @Tim-Evans-Seequent .
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions