mirror of
https://github.com/openXC7/prjxray.git
synced 2026-08-29 01:13:57 +02:00
Updated iterator class
updated the code which was using the std::iterator class, which has been marked as deprecated in the C++17 standard Signed-off-by: ABHISHEK ANAND <[email protected]>
This commit is contained in:
committed by
Hans Baier
parent
330b9245ff
commit
e91b224ccb
@@ -56,9 +56,15 @@ class BigEndianSpan {
|
||||
absl::Span<ByteType> bytes_;
|
||||
};
|
||||
|
||||
class iterator
|
||||
: public std::iterator<std::input_iterator_tag, value_type> {
|
||||
class iterator {
|
||||
public:
|
||||
|
||||
using iterator_category = std::input_iterator_tag;
|
||||
using value_type = BigEndianSpan::value_type;
|
||||
using difference_type = std::ptrdiff_t;
|
||||
using pointer = value_type*;
|
||||
using reference = value_type&;
|
||||
|
||||
value_type operator*() const { return value_type(bytes_); }
|
||||
|
||||
bool operator==(const iterator& other) const {
|
||||
|
||||
@@ -34,9 +34,14 @@ class SegbitsFileReader {
|
||||
absl::string_view bit_;
|
||||
};
|
||||
|
||||
class iterator
|
||||
: public std::iterator<std::input_iterator_tag, value_type> {
|
||||
public:
|
||||
class iterator {
|
||||
public:
|
||||
using iterator_category = std::input_iterator_tag;
|
||||
using value_type = SegbitsFileReader::value_type;
|
||||
using difference_type = std::ptrdiff_t;
|
||||
using pointer = value_type*;
|
||||
using reference = value_type&;
|
||||
|
||||
iterator& operator++();
|
||||
|
||||
bool operator==(iterator other) const {
|
||||
|
||||
@@ -33,9 +33,14 @@ class BitstreamReader {
|
||||
|
||||
// Implements an iterator over the words grouped in configuration
|
||||
// packets.
|
||||
class iterator
|
||||
: public std::iterator<std::input_iterator_tag, value_type> {
|
||||
public:
|
||||
class iterator {
|
||||
public:
|
||||
using iterator_category = std::input_iterator_tag;
|
||||
using value_type = BitstreamReader::value_type;
|
||||
using difference_type = std::ptrdiff_t;
|
||||
using pointer = value_type*;
|
||||
using reference = value_type&;
|
||||
|
||||
iterator& operator++();
|
||||
|
||||
bool operator==(const iterator& other) const;
|
||||
|
||||
@@ -51,9 +51,14 @@ class BitstreamWriter {
|
||||
typedef absl::Span<const uint32_t>::iterator data_iterator_t;
|
||||
using itr_value_type = uint32_t;
|
||||
|
||||
class packet_iterator
|
||||
: public std::iterator<std::input_iterator_tag, itr_value_type> {
|
||||
public:
|
||||
class packet_iterator {
|
||||
public:
|
||||
using iterator_category = std::input_iterator_tag;
|
||||
using value_type = BitstreamWriter::itr_value_type;
|
||||
using difference_type = std::ptrdiff_t;
|
||||
using pointer = value_type*;
|
||||
using reference = value_type&;
|
||||
|
||||
packet_iterator& operator++();
|
||||
|
||||
bool operator==(const packet_iterator& other) const;
|
||||
@@ -76,7 +81,7 @@ class BitstreamWriter {
|
||||
data_iterator_t itr_data);
|
||||
|
||||
private:
|
||||
friend iterator;
|
||||
friend class iterator;
|
||||
friend BitstreamWriter;
|
||||
|
||||
// Data iterators
|
||||
@@ -89,9 +94,14 @@ class BitstreamWriter {
|
||||
packet_;
|
||||
};
|
||||
|
||||
class iterator
|
||||
: public std::iterator<std::input_iterator_tag, itr_value_type> {
|
||||
public:
|
||||
class iterator {
|
||||
public:
|
||||
using iterator_category = std::input_iterator_tag;
|
||||
using value_type = BitstreamWriter::itr_value_type;
|
||||
using difference_type = std::ptrdiff_t;
|
||||
using pointer = value_type*;
|
||||
using reference = value_type&;
|
||||
|
||||
iterator& operator++();
|
||||
|
||||
bool operator==(const iterator& other) const;
|
||||
|
||||
Reference in New Issue
Block a user