diff options
author | Joe George <joe@zeroc.com> | 2021-02-11 15:49:38 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-11 15:50:38 -0500 |
commit | 3ac38645833a89f13b8e0121d1a91e0fc710fe5a (patch) | |
tree | 1f87b55f4badc245386b7176063b05c60dcce877 /ruby/src | |
parent | Switch to using python3 by default (diff) | |
download | ice-3ac38645833a89f13b8e0121d1a91e0fc710fe5a.tar.bz2 ice-3ac38645833a89f13b8e0121d1a91e0fc710fe5a.tar.xz ice-3ac38645833a89f13b8e0121d1a91e0fc710fe5a.zip |
Support for Ruby 3.0 (Fixes #1257) (#1258)
Diffstat (limited to 'ruby/src')
-rw-r--r-- | ruby/src/IceRuby/Config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ruby/src/IceRuby/Config.h b/ruby/src/IceRuby/Config.h index 774d0601d1b..df22153fffc 100644 --- a/ruby/src/IceRuby/Config.h +++ b/ruby/src/IceRuby/Config.h @@ -57,6 +57,9 @@ // BUGFIX: Workaround clang conversion warnings in ruby headers // # pragma clang diagnostic ignored "-Wconversion" + +// Silence warnings regarding missing deprecation attributes in ruby headers +# pragma clang diagnostic ignored "-Wdocumentation-deprecated-sync" #elif defined(__GNUC__) # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" |