mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 18:23:29 +02:00
address warning
This commit is contained in:
parent
11f036246e
commit
1aa067db74
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ void Instance::updateMasterIndices() {
|
|||
// Go through the displays list
|
||||
{
|
||||
_masterDisplay = NOT_FOUND;
|
||||
for (int i = 0; i < _displays.size(); ++i) {
|
||||
for (int i = 0; i < (int) _displays.size(); ++i) {
|
||||
const auto& display = _displays[i];
|
||||
if (display.count(keys::display::isMaster)) {
|
||||
if (display[keys::display::isMaster].get<bool>()) {
|
||||
|
|
Loading…
Reference in a new issue