blob: 7e362808330c22af19dc200a6afd02b81c7e99cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- 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:
|