Warning fix.

This commit is contained in:
vng 2012-02-14 16:09:55 +03:00 committed by Alex Zolotarev
parent 8efd58305d
commit b701a1967c
2 changed files with 3 additions and 2 deletions

View file

@ -158,7 +158,8 @@ namespace core
CommandsQueue::~CommandsQueue()
{
// @TODO memory leak in m_executors? call Cancel()?
/// @todo memory leak in m_executors? call Cancel()?
//CHECK ( m_executors == 0, () );
}
void CommandsQueue::Cancel()

View file

@ -23,7 +23,7 @@ namespace my
class SrcPoint
{
public:
SrcPoint() : m_fileName(""), m_line(-1), m_function("")
SrcPoint() : m_fileName(""), m_line(-1), m_function(""), m_postfix("")
{
TruncateFileName();
}