mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 22:32:57 +02:00
Fix variable name in assert
This commit is contained in:
parent
a64bc7f638
commit
50d9a53883
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ void RegionState::run(const workload::WorkloadContextPointer& renderContext, con
|
|||
// inputs[2N + 1] = vector of ids entering region N
|
||||
//
|
||||
// But we only pass inputs for R1 through R3
|
||||
assert(inputs.size() == 2 * RegionState::NUM_REGIONS_TRACKED);
|
||||
assert(inputs.size() == 2 * workload::Region::NUM_TRACKED_REGIONS);
|
||||
|
||||
// The id's in each vector are sorted in ascending order
|
||||
// because the source vectors are scanned in ascending order.
|
||||
|
|
Loading…
Reference in a new issue