[DEV] chang API: etk::Hash::getSize return size_t instead of int32_t

This commit is contained in:
Edouard DUPIN 2017-06-28 22:52:50 +02:00
parent 8dcc6851b6
commit a72cdb680c

View File

@ -198,7 +198,7 @@ namespace etk {
* @brief Get the number of element in the hash table
* @return number of elements
*/
int32_t size() const {
size_t size() const {
return m_data.size();
}
/**