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:
parent
8b8c374c45
commit
fc1f476b61
1 changed files with 6 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue