Suppose I have a struct containing a std::string, like this:
struct userdata{ int uid; std::string username; }
Do I nee
As long as you don't have pointers as your datamembers, you should be fine.