Skip to content
Snippets Groups Projects
Commit b8c115e8 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix warning

parent 93c7dbfb
No related branches found
No related tags found
1 merge request!188ArMem Updates
......@@ -37,7 +37,7 @@ namespace armarx::armem::server::wm
removedElements.push_back(std::move(this->_container.begin()->second));
this->_container.erase(this->_container.begin());
}
ARMARX_CHECK_LESS_EQUAL(this->_container.size(), _maxHistorySize);
ARMARX_CHECK_LESS_EQUAL(this->_container.size(), size_t(_maxHistorySize));
}
return removedElements;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment