| Index: sky/engine/bindings/scripts/v8_callback_interface.py
|
| diff --git a/sky/engine/bindings/scripts/v8_callback_interface.py b/sky/engine/bindings/scripts/v8_callback_interface.py
|
| index 865d4e93e98aece46befe7781787609f543a7c29..9e30e888ec0def05abd3566ce52bc76f2abb3c96 100644
|
| --- a/sky/engine/bindings/scripts/v8_callback_interface.py
|
| +++ b/sky/engine/bindings/scripts/v8_callback_interface.py
|
| @@ -63,7 +63,7 @@ def cpp_type(idl_type):
|
| return 'void'
|
| # Callbacks use raw pointers, so raw_type=True
|
| raw_cpp_type = idl_type.cpp_type_args(raw_type=True)
|
| - if raw_cpp_type.startswith(('Vector', 'HeapVector', 'Vector')):
|
| + if raw_cpp_type.startswith(('Vector', 'Vector')):
|
| return 'const %s&' % raw_cpp_type
|
| return raw_cpp_type
|
|
|
|
|