You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::string is not Unicode-compatible. It is often used for storing binary data or random text (taken from files). Convert all these usages to Util::UString or Util::Buffer. For code-internal strings, use std::string_view or char[S].