ports/www/node22/files/patch-deps-v8-src-base-small-vector.h
Po-Chuan Hsieh 067dacb0c6
www/node22: Add node22 22.0.0
Node.js is a free, open-source, cross-platform JavaScript runtime environment
that lets developers create servers, web apps, command line tools and scripts.
2024-05-16 14:21:47 +08:00

10 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: