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
655 B
C++
11 lines
655 B
C++
--- base/functional/unretained_traits.h.orig 2023-02-01 18:43:07 UTC
|
|
+++ base/functional/unretained_traits.h
|
|
@@ -130,7 +130,7 @@ struct TypeSupportsUnretained {
|
|
// official builds, and then in non-test code as well.
|
|
#if !defined(UNIT_TEST) && !defined(OFFICIAL_BUILD)
|
|
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN) || \
|
|
- defined(FORCE_UNRETAINED_COMPLETENESS_CHECKS_FOR_TESTS)
|
|
+ || BUILDFLAGS(IS_BSD) || defined(FORCE_UNRETAINED_COMPLETENESS_CHECKS_FOR_TESTS)
|
|
static_assert(IsCompleteTypeV<T> ||
|
|
IsIncompleteTypeSafeForUnretained<std::remove_cv_t<T>>,
|
|
"T must be fully defined.");
|