projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d50343
)
added conversion ctor to create const_iterator from iterator, otherwise assigning...
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Mon, 8 May 2006 23:26:39 +0000
(23:26 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Mon, 8 May 2006 23:26:39 +0000
(23:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39112
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
include/wx/hashmap.h
patch
|
blob
|
blame
|
history
diff --git
a/include/wx/hashmap.h
b/include/wx/hashmap.h
index 14e5619e6a9563f72ccf3213214865f742785447..b6ff1455e2ddaec6ab3bdc9da6188447a92685d7 100644
(file)
--- a/
include/wx/hashmap.h
+++ b/
include/wx/hashmap.h
@@
-202,6
+202,7
@@
public: \
{ \
public: \
const_iterator() : Iterator() {} \
+ const_iterator(iterator i) : Iterator(i) {} \
const_iterator( Node* node, const Self* ht ) \
: Iterator( node, (Self*)ht ) {} \
const_iterator& operator++() { PlusPlus();return *this; } \