* eval.c (setup_exception): suppress a maybe-uninitialized false
  warning by gcc 4.8.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-06-26 15:03:04 +00:00
Родитель 29fc4912fb
Коммит 565ce9b379
1 изменённых файлов: 1 добавлений и 1 удалений

2
eval.c
Просмотреть файл

@ -471,7 +471,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause)
{
VALUE at;
VALUE e;
const char *file;
const char *file = 0;
volatile int line = 0;
int nocause = 0;