diff --git a/include/v8-cppgc.h b/include/v8-cppgc.h index 414cee5d9378..2c22193046e4 100644 --- a/include/v8-cppgc.h +++ b/include/v8-cppgc.h @@ -72,6 +72,9 @@ struct WrapperDescriptor final { }; struct V8_EXPORT CppHeapCreateParams { + CppHeapCreateParams(const CppHeapCreateParams&) = delete; + CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete; + std::vector> custom_spaces; WrapperDescriptor wrapper_descriptor; };