[gil] Duplicate typedef in pnm's scanline_read.hpp
At the top of the “scanline_reader” template in boost/gil/extension/io/formats/pnm/scanline_read.hpp the are the following lines of code:
…
private:
typedef scanline_reader< Device
, pnm_tag
> this_t;
public:
typedef pnm_tag tag_t;
typedef reader_backend < Device, tag_t > backend_t;
typedef scanline_reader< Device, tag_t > this_t;
…
This typdefs this_t twice, preventing compilation (using clang of Apple Xcode 5.1). Removing the first typedef fixes this problem.
Change History
(4)
Owner: |
changed from Hailin Jin to Stefan Seefeld
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Milestone: |
To Be Determined → Boost 1.68.0
|
Closing as fixed.
GitHub ref: https://github.com/boostorg/gil/projects/4#card-12375873