cast to int to silence clang compile error

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nari 2014-03-26 05:14:51 +00:00
Родитель 90b7073842
Коммит 17a6f9227a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -10234,7 +10234,7 @@ id_type(ID id)
}
else {
VALUE dsym = (VALUE)id;
return RSYMBOL(dsym)->type;
return (int)(RSYMBOL(dsym)->type);
}
}