mirror of
https://git.freebsd.org/ports.git
synced 2025-05-16 09:11:50 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
11 lines
495 B
C++
11 lines
495 B
C++
--- v8/src/base/small-vector.h.orig 2022-10-25 08:25:05 UTC
|
|
+++ v8/src/base/small-vector.h
|
|
@@ -22,7 +22,7 @@ template <typename T, size_t kSize, typename Allocator
|
|
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);
|
|
+ // XXX FREEBSD ASSERT_TRIVIALLY_COPYABLE(T);
|
|
static_assert(std::is_trivially_destructible<T>::value);
|
|
|
|
public:
|