Skip to content

Commit

Permalink
Fixed making Ruby values for Metrics values.
Browse files Browse the repository at this point in the history
  • Loading branch information
brixen committed Nov 19, 2014
1 parent aedb9a4 commit e00041f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vm/metrics.cpp
Expand Up @@ -6,9 +6,9 @@
#include "configuration.hpp"
#include "ontology.hpp"

#include "builtin/bignum.hpp"
#include "builtin/class.hpp"
#include "builtin/fixnum.hpp"
#include "builtin/integer.hpp"
#include "builtin/lookup_table.hpp"
#include "builtin/thread.hpp"
#include "builtin/tuple.hpp"
Expand Down Expand Up @@ -410,7 +410,7 @@ namespace rubinius {
i != metrics_map_.end();
++i)
{
values->put(state, index++, Bignum::from(state, (*i)->second));
values->put(state, index++, Integer::from(state, (*i)->second));
}
}

Expand Down

0 comments on commit e00041f

Please sign in to comment.