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
cmnData<std::string>::SerializeText adds an escape character, '', before any spaces in the string being serialized. This breaks code in many argument constructors because they attempt to parse multiple parameters from a single string (in the FromStreamRaw method). This is only used by the cisstComponentManager, however, so it is not a major issue. My opinion is that we should preserve any escape characters already in the string, but not add any in SerializeText. We could have a separate method (perhaps a helper function) to add escape characters to a string.
The text was updated successfully, but these errors were encountered:
cmnData<std::string>::SerializeText
adds an escape character, '', before any spaces in the string being serialized. This breaks code in many argument constructors because they attempt to parse multiple parameters from a single string (in theFromStreamRaw
method). This is only used by thecisstComponentManager
, however, so it is not a major issue. My opinion is that we should preserve any escape characters already in the string, but not add any inSerializeText
. We could have a separate method (perhaps a helper function) to add escape characters to a string.The text was updated successfully, but these errors were encountered: