add const qualifiers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 16:24:26 +00:00
parent 1fee6e2577
commit 328f5751e8
193 changed files with 2525 additions and 2513 deletions

View File

@@ -35,7 +35,7 @@ public:
Please remember that hash maps do not guarantee ordering.
*/
const_iterator begin();
iterator begin();
const iterator begin();
//@}
/**
@@ -47,12 +47,12 @@ public:
Counts the number of elements with the given key present in the map.
This function returns only 0 or 1.
*/
size_type count(const key_type& key);
size_type count(const key_type& key) const;
/**
Returns @true if the hash map does not contain any elements, @false otherwise.
*/
bool empty();
bool empty() const;
//@{
/**
@@ -60,7 +60,7 @@ public:
Please remember that hash maps do not guarantee ordering.
*/
const_iterator end();
iterator end();
const iterator end();
//@}
//@{
@@ -79,8 +79,8 @@ public:
an iterator pointing at that element, otherwise an invalid iterator
is returned (i.e. hashmap.find( non_existent_key ) == hashmap.end()).
*/
iterator find(const key_type& key);
const_iterator find(const key_type& key);
iterator find(const key_type& key) const;
const_iterator find(const key_type& key) const;
//@}
/**
@@ -101,5 +101,5 @@ public:
/**
Returns the number of elements in the map.
*/
size_type size();
size_type size() const;
};