Build fixes for gcc.

This commit is contained in:
Gunnar Beutner 2012-05-18 10:27:41 +02:00
parent 7f381149dc
commit 57dcab4174
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public:
if (i == m_Data.end())
return false;
*value = i->second;
*value = static_cast<T>(i->second);
return true;
}

View File

@ -41,7 +41,7 @@ public:
/**
* Destructor for the Exception class. Must be virtual for RTTI to work.
*/
virtual ~Exception(void)
virtual ~Exception(void) throw()
{
delete m_Message;
}