My QNX/BB10 C++ application crashes, a simple C++ object seems to be corrupted
问题 I'm working on a QNX / Blackberry 10 application. My application has recently begun to crash. Inserting trace statements has led me to believe the crash is occurring in the following situation. My client app calls an internal function, passing it a reference to a C++ class object. The passed C++ class looks like the following: class ALPeerData { public: ALPeerData (); virtual ~ALPeerData (); int _peerId; ALModelType _modelType; std::wstring _computerName; std::wstring _uuidDevice; . . . };