mirror of
https://github.com/taglib/taglib.git
synced 2025-07-14 11:04:17 -04:00
Remove deprecated stuff
This commit is contained in:
11
3rdparty/utf8-cpp/checked.h
vendored
11
3rdparty/utf8-cpp/checked.h
vendored
@ -265,11 +265,16 @@ namespace utf8
|
||||
|
||||
// The iterator class
|
||||
template <typename octet_iterator>
|
||||
class iterator : public std::iterator <std::bidirectional_iterator_tag, uint32_t> {
|
||||
class iterator {
|
||||
octet_iterator it;
|
||||
octet_iterator range_start;
|
||||
octet_iterator range_end;
|
||||
public:
|
||||
public:
|
||||
using iterator_category = std::bidirectional_iterator_tag;
|
||||
using value_type = uint32_t;
|
||||
using difference_type = ptrdiff_t;
|
||||
using pointer = uint32_t*;
|
||||
using reference = uint32_t&;
|
||||
iterator () {}
|
||||
explicit iterator (const octet_iterator& octet_it,
|
||||
const octet_iterator& rangestart,
|
||||
@ -323,5 +328,3 @@ namespace utf8
|
||||
} // namespace utf8
|
||||
|
||||
#endif //header guard
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user