Files
bsdports/lang/node22/files/patch-deps-v8-src-base-small-vector.h
2025-08-28 11:38:03 +02:00

11 lines
422 B
C++

--- deps/v8/src/base/small-vector.h.orig 2024-04-24 14:03:50 UTC
+++ deps/v8/src/base/small-vector.h
@@ -22,7 +22,6 @@ class SmallVector {
class SmallVector {
// Currently only support trivially copyable and trivially destructible data
// types, as it uses memcpy to copy elements and never calls destructors.
- ASSERT_TRIVIALLY_COPYABLE(T);
static_assert(std::is_trivially_destructible<T>::value);
public: