CHECK is not needed
This commit is contained in:
parent
8a31e2d9c0
commit
d9bfe6a49d
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ struct Dispatcher<ReturnType(ArgTypes...)> {
|
||||||
const v8::FunctionCallbackInfo<v8::Value>& info) {
|
const v8::FunctionCallbackInfo<v8::Value>& info) {
|
||||||
Arguments args(info);
|
Arguments args(info);
|
||||||
v8::Local<v8::External> v8_holder;
|
v8::Local<v8::External> v8_holder;
|
||||||
CHECK(args.GetData(&v8_holder));
|
args.GetData(&v8_holder);
|
||||||
CallbackHolderBase* holder_base = reinterpret_cast<CallbackHolderBase*>(
|
CallbackHolderBase* holder_base = reinterpret_cast<CallbackHolderBase*>(
|
||||||
v8_holder->Value());
|
v8_holder->Value());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue