Merge branch 'master' into blender2.8

This commit is contained in:
2018-10-11 09:08:30 +11:00
44 changed files with 172 additions and 169 deletions

View File

@@ -610,7 +610,7 @@ inline bool isInteger(const std::string & s)
{
if (s.empty() || ((!isdigit(s[0])) && (s[0] != '-') && (s[0] != '+'))) return false;
char * p;
char *p;
strtol(s.c_str(), &p, 10);
return (*p == 0);