Fix some of the 64bit VS warnings.

This commit is contained in:
Jason Turner
2010-11-05 02:22:38 +00:00
parent b3dafa385e
commit 6a18862c79
3 changed files with 4 additions and 4 deletions

View File

@@ -416,7 +416,7 @@ namespace chaiscript
virtual int get_arity() const
{
return m_types.size() - 1;
return static_cast<int>(m_types.size()) - 1;
}