mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 16:55:06 +02:00
Merge pull request #15931 from Atlante45/fix/dev-builds
Fix debug builds not compiling
This commit is contained in:
commit
020c7a5f44
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