mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-17 14:26:17 +02:00
use explicit cast to avoid windows warning
This commit is contained in:
parent
a8ad846f2b
commit
955af21aba
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ void Space::setViews(const std::vector<Space::View>& views) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Space::categorizeAndGetChanges(std::vector<Space::Change>& changes) {
|
void Space::categorizeAndGetChanges(std::vector<Space::Change>& changes) {
|
||||||
uint32_t numProxies = _proxies.size();
|
uint32_t numProxies = (uint32_t)_proxies.size();
|
||||||
uint32_t numViews = _views.size();
|
uint32_t numViews = (uint32_t)_views.size();
|
||||||
for (uint32_t i = 0; i < numProxies; ++i) {
|
for (uint32_t i = 0; i < numProxies; ++i) {
|
||||||
Proxy& proxy = _proxies[i];
|
Proxy& proxy = _proxies[i];
|
||||||
if (proxy.region < Space::REGION_INVALID) {
|
if (proxy.region < Space::REGION_INVALID) {
|
||||||
|
|
Loading…
Reference in a new issue