mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Mac: Fix implicit type cast errors with Xcode 14.1
This commit is contained in:
@@ -47,7 +47,7 @@ class V8Handler : public CefV8Handler {
|
||||
// Execute the test.
|
||||
int64 delta = kPerfTests[i].test(kPerfTests[i].iterations);
|
||||
|
||||
retval = CefV8Value::CreateInt(delta);
|
||||
retval = CefV8Value::CreateInt(static_cast<int32>(delta));
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user