0
0
mirror of https://github.com/phpv8/v8js.git synced 2025-03-22 13:37:03 +00:00

ShutdownPlatform is DisposePlatform() now

This commit is contained in:
Stefan Siegl 2022-06-24 21:35:58 +02:00
parent 225c8cde63
commit 19111d6514

View File

@ -162,7 +162,7 @@ static PHP_MSHUTDOWN_FUNCTION(v8js)
if(v8_initialized) { if(v8_initialized) {
v8::V8::Dispose(); v8::V8::Dispose();
v8::V8::ShutdownPlatform(); v8::V8::DisposePlatform();
// @fixme call virtual destructor somehow // @fixme call virtual destructor somehow
//delete v8js_process_globals.v8_platform; //delete v8js_process_globals.v8_platform;
} }