senfscons: Much improved install implementation
[senf.git] / Utils / hexdump.hh
index 9001097..7a31aef 100644 (file)
 
 namespace senf {
 
-    /** \brief write the contents from Iterator i to i_end to the output stream in hexadecimal format.
+    /** \brief Write range [ i, i_end ) to output stream in hexadecimal format
      */
     template <class Iterator>
-    void hexdump(Iterator i, Iterator const & i_end, std::ostream& stream, unsigned block_size=16);
+    void hexdump(Iterator i, Iterator i_end, std::ostream & stream, unsigned block_size=16);
 }
 
 ///////////////////////////////hh.e////////////////////////////////////////