mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 13:33:38 +02:00
remove warning about signed/unsigned comparison
This commit is contained in:
parent
c42003a374
commit
5050a554a2
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ namespace indexed_container {
|
|||
if (index < (Index) _elements.size()) {
|
||||
_elements[index] = e;
|
||||
} else {
|
||||
assert(index == _elements.size());
|
||||
assert(index == (Index)_elements.size());
|
||||
_elements.emplace_back(e);
|
||||
}
|
||||
}
|
||||
|
@ -159,4 +159,4 @@ namespace indexed_container {
|
|||
};
|
||||
};
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue