mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 00:50:40 +00:00
Remove incorrect typename
T::IsForwardReferenceable is a static boolean member, not a type.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user