ports/www/node23/files/patch-deps-v8-src-base-small-vector.h
Po-Chuan Hsieh 5040edc575
www/node23: Add node23 23.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-10-21 17:17:25 +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: