mirror of
https://git.freebsd.org/ports.git
synced 2025-07-05 03:19:18 -04:00
Approved by: rene (mentor) Security: https://vuxml.freebsd.org/freebsd/310ca30e-a951-11ed-8314-a8a1599412c6.html
11 lines
655 B
C++
11 lines
655 B
C++
--- base/functional/unretained_traits.h.orig 2023-02-08 09:03:45 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.");
|