mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 01:00:44 +02:00
fix warnings on windows
This commit is contained in:
parent
0d9b1a7368
commit
77d0c211df
1 changed files with 2 additions and 2 deletions
|
@ -63,8 +63,8 @@ void Space::copyViews(std::vector<View>& copy) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
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 < Region::INVALID) {
|
if (proxy.region < Region::INVALID) {
|
||||||
|
|
Loading…
Reference in a new issue