1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

remove vestigial object.

This commit is contained in:
Charles Lowell 2012-05-22 14:49:39 -05:00
parent 46d4e26f96
commit 8c80b4b6cc

View file

@ -1,16 +0,0 @@
#include "rr.h"
namespace rr {
VALUE Bool(bool b) {
return b ? Qtrue : Qfalse;
}
int Int(VALUE v) {
return RTEST(v) ? NUM2INT(v) : 0;
}
uint32_t UInt32(VALUE num) {
return NUM2UINT(num);
}
}