Author: brane
Date: Wed Jul 24 09:43:13 2013
New Revision: 1506466
URL: http://svn.apache.org/r1506466
Log:
Fix typo in private Hash::Key constructor declaration in C++HL.
* subversion/bindings/cxxhl/src/aprwrap/hash.hpp (Hash::Key::Key):
Using the class-specific "inherited" typedef, it already is a Key.
Found by: rhuijben
Modified:
subversion/trunk/subversion/bindings/cxxhl/src/aprwrap/hash.hpp
Modified: subversion/trunk/subversion/bindings/cxxhl/src/aprwrap/hash.hpp
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/cxxhl/src/aprwrap/hash.hpp?rev=1506466&r1=1506465&r2=1506466&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/cxxhl/src/aprwrap/hash.hpp (original)
+++ subversion/trunk/subversion/bindings/cxxhl/src/aprwrap/hash.hpp Wed Jul 24
09:43:13 2013
@@ -250,7 +250,7 @@ public:
/**
* Conversion constructor used by the derived iteration class.
*/
- explicit Key(const inherited::Key& that) throw()
+ explicit Key(const inherited& that) throw()
: inherited(that)
{}
};