Browse Source

exefilter: Avoid shadowing

pull/108/head
Daniel Scharrer 7 years ago
parent
commit
255b6edca8
  1. 8
      src/stream/exefilter.hpp

8
src/stream/exefilter.hpp

@ -93,11 +93,11 @@ public:
typedef base_type::category category;
/*!
* \param flip_high_byte true if the high byte of addresses is flipped if bit 23 is set.
* This optimization is used in Inno Setup 5.3.9 and later.
* \param flip_high_bytes true if the high byte of addresses is flipped if bit 23 is set.
* This optimization is used in Inno Setup 5.3.9 and later.
*/
explicit inno_exe_decoder_5200(bool flip_high_byte)
: flip_high_byte(flip_high_byte) { close(0); }
explicit inno_exe_decoder_5200(bool flip_high_bytes)
: flip_high_byte(flip_high_bytes) { close(0); }
template <typename Source>
std::streamsize read(Source & src, char * dest, std::streamsize n);

Loading…
Cancel
Save