Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5075292b71ed
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d3bc1824ada6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 15, 2015

  1. Copy the full SHA
    767e163 View commit details
  2. Merge pull request #3443 from fmfdias/announce_new_capi_hash_function…

    …_definitions
    
    Announces new capi hash functions.
    brixen committed Jun 15, 2015
    Copy the full SHA
    d3bc182 View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 vm/include/capi/ruby/ruby.h
2 changes: 2 additions & 0 deletions vm/include/capi/ruby/ruby.h
Original file line number Diff line number Diff line change
@@ -1436,9 +1436,11 @@ struct RTypedData {

/** Duplicate the Hash object */
VALUE rb_hash_dup(VALUE self);
#define HAVE_RB_HASH_DUP 1

/** Freeze the Hash object */
VALUE rb_hash_freeze(VALUE self);
#define HAVE_RB_HASH_FREEZE 1

/** Return the value associated with the key, including default values. */
VALUE rb_hash_aref(VALUE self, VALUE key);