diff options
Diffstat (limited to 'ruby/src/IceRuby/Util.h')
-rw-r--r-- | ruby/src/IceRuby/Util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby/src/IceRuby/Util.h b/ruby/src/IceRuby/Util.h index 40054f909d5..355044bca9b 100644 --- a/ruby/src/IceRuby/Util.h +++ b/ruby/src/IceRuby/Util.h @@ -445,7 +445,7 @@ VALUE createArrayHelper(long); // VALUE arr = createArray(size); // for(long i = 0; i < size; ++i) // { -// RARRAY_PTR(arr)[i] = ...; +// RARRAY_ASET(arr, i, val); // } // template<typename T> |