diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-10-26 17:17:11 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2018-10-26 17:17:11 -0400 |
commit | 42c905a3ca29a1e911e7def9c2d9d9b8e95383cd (patch) | |
tree | 1b704d084e39c0acd15859f2dd258eff7aaa7fc6 /ruby/src/IceRuby/Slice.cpp | |
parent | Do not use time.clock() with Python >= 3.3 as it is deprecated (diff) | |
download | ice-42c905a3ca29a1e911e7def9c2d9d9b8e95383cd.tar.bz2 ice-42c905a3ca29a1e911e7def9c2d9d9b8e95383cd.tar.xz ice-42c905a3ca29a1e911e7def9c2d9d9b8e95383cd.zip |
Extra C++ warning flags with clang and g++.
Fixes 223.
Diffstat (limited to 'ruby/src/IceRuby/Slice.cpp')
-rw-r--r-- | ruby/src/IceRuby/Slice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/src/IceRuby/Slice.cpp b/ruby/src/IceRuby/Slice.cpp index 679b040291c..204b81c7197 100644 --- a/ruby/src/IceRuby/Slice.cpp +++ b/ruby/src/IceRuby/Slice.cpp @@ -21,7 +21,7 @@ using namespace Slice::Ruby; extern "C" VALUE -IceRuby_loadSlice(int argc, VALUE* argv, VALUE self) +IceRuby_loadSlice(int argc, VALUE* argv, VALUE /*self*/) { ICE_RUBY_TRY { @@ -163,7 +163,7 @@ IceRuby_loadSlice(int argc, VALUE* argv, VALUE self) extern "C" VALUE -IceRuby_compile(int argc, VALUE* argv, VALUE self) +IceRuby_compile(int argc, VALUE* argv, VALUE /*self*/) { ICE_RUBY_TRY { |