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

remove unecessary qualification

This commit is contained in:
Charles Lowell 2012-06-08 02:17:42 -05:00
parent 64a1c520c6
commit f1a1571370

View file

@ -133,7 +133,7 @@ public:
public:
Holder(v8::Handle<T> handle, VALUE klass) {
this->handle = v8::Persistent<T>::New(handle);
this->value = Data_Wrap_Struct(klass, 0, &Holder::enqueue, this);
this->value = Data_Wrap_Struct(klass, 0, &enqueue, this);
}
virtual ~Holder() {
handle.Dispose();