mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
remove vestigial object.
This commit is contained in:
parent
46d4e26f96
commit
8c80b4b6cc
1 changed files with 0 additions and 16 deletions
|
@ -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);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue