From 70d908d854886e002c26ab334e5492aefdf7da36 Mon Sep 17 00:00:00 2001 From: skypjack Date: Mon, 2 Mar 2026 14:58:54 +0100 Subject: [PATCH] test: minor changes --- test/common/value_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/common/value_type.h b/test/common/value_type.h index b98dc8f6c..fe05bcd87 100644 --- a/test/common/value_type.h +++ b/test/common/value_type.h @@ -45,7 +45,7 @@ struct non_movable_mixin: Type { non_movable_mixin &operator=(const non_movable_mixin &) noexcept = default; }; -struct empty_mixin {}; +struct empty_type {}; struct value_type { constexpr value_type() = default; @@ -61,7 +61,7 @@ using pointer_stable = internal::pointer_stable_mixin; using non_default_constructible = internal::non_default_constructible_mixin; using non_trivially_destructible = internal::non_trivially_destructible_mixin; using pointer_stable_non_trivially_destructible = internal::pointer_stable_mixin>; -using non_comparable = internal::non_comparable_mixin; +using non_comparable = internal::non_comparable_mixin; using non_movable = internal::non_movable_mixin; static_assert(std::is_trivially_destructible_v, "Not a trivially destructible type");