Fix build error

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2025-08-05 10:44:59 +01:00
parent 3fa9a9fa38
commit e6dfddfc30

View File

@@ -396,7 +396,7 @@ using MatchConstness = std::
conditional_t<std::is_const_v<MatchAgainst>, std::add_const_t<Type>, Type>;
template <typename T>
concept STObjectLike = std::same_as<std::remove_cvref_t<T>, STObject>;
concept STObjectLike = std::is_same_v<std::remove_cvref_t<T>, STObject>;
// This type returns the value directly if the field is a typed field.
template <