(svn r18954) -Fix (r18952): missing 'inline'

This commit is contained in:
smatz 2010-01-29 23:54:00 +00:00
parent 4c4d1e1bf6
commit 54f958c8e5
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ static inline VarType GetVarFileType(VarType type)
* @param conv the type to check
* @return True if it's a numeric type.
*/
static bool IsNumericType(VarType conv)
static inline bool IsNumericType(VarType conv)
{
return GetVarMemType(conv) <= SLE_VAR_U64;
}