1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

addr2line.c uses c99ism

https://travis-ci.org/ruby/ruby/jobs/450505006

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65540 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2018-11-04 22:36:05 +00:00
parent 8b8c374c45
commit fc1f476b61

View file

@ -8,6 +8,12 @@
**********************************************************************/
#if defined(__clang__)
#pragma clang diagnostic ignored "-Wpedantic"
#elif defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wpedantic"
#endif
#include "ruby/config.h"
#include "ruby/defines.h"
#include "ruby/missing.h"