| Index: src/inspector/V8RuntimeAgentImpl.cpp
|
| diff --git a/src/inspector/V8RuntimeAgentImpl.cpp b/src/inspector/V8RuntimeAgentImpl.cpp
|
| index 1e22b3c978167011495eb76a5472186d1cb97452..c018fba1feafefe15ab095e7709b17e87ce59e7b 100644
|
| --- a/src/inspector/V8RuntimeAgentImpl.cpp
|
| +++ b/src/inspector/V8RuntimeAgentImpl.cpp
|
| @@ -364,7 +364,7 @@
|
| if (optionalArguments.isJust()) {
|
| protocol::Array<protocol::Runtime::CallArgument>* arguments =
|
| optionalArguments.fromJust();
|
| - argc = static_cast<int>(arguments->length());
|
| + argc = arguments->length();
|
| argv.reset(new v8::Local<v8::Value>[argc]);
|
| for (int i = 0; i < argc; ++i) {
|
| v8::Local<v8::Value> argumentValue;
|
|
|