Remove incorrect typename

T::IsForwardReferenceable is a static boolean member, not a type.
This commit is contained in:
widberg
2026-03-23 13:30:36 -04:00
committed by Baldur Karlsson
parent 8396ceabd7
commit c3dcdee57c
@@ -909,7 +909,7 @@ struct ValueList : private rdcarray<Value *>
T *nextValue()
{
RDCASSERT(!pendingValue);
RDCCOMPILE_ASSERT(typename T::IsForwardReferenceable,
RDCCOMPILE_ASSERT(T::IsForwardReferenceable,
"alloc'ing next value for non-forward-referenceable type");
pendingValue = true;