public:
/** @brief This constructor is used when registering this class */
CheckMemoryLeakInFunction() : Check(myName()), CheckMemoryLeak(0, 0, Standards()), symbolDatabase(NULL)
{ }
CheckMemoryLeak(0, 0, Standards())
构造函数把Standards()临时栈空间绑到 standard 引用里了,可能会发生问题。
在 193 行
CheckMemoryLeak(0, 0, Standards())
构造函数把Standards()
临时栈空间绑到 standard 引用里了,可能会发生问题。