implementation-defined iterators

This commit is contained in:
Marius Bancila 2018-01-31 09:33:50 +02:00 committed by GitHub
parent 8454c6179f
commit 5ea167b47a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,18 +322,16 @@ namespace std {
namespace std {
struct uuid
{
struct uuid_const_iterator {};
struct uuid_iterator {};
public:
typedef uint8_t value_type;
typedef uint8_t& reference;
typedef uint8_t const& const_reference;
typedef uuid_iterator iterator;
typedef uuid_const_iterator const_iterator;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef /*implementation-defined*/ iterator;
typedef /*implementation-defined*/ const_iterator;
static constexpr size_t state_size = 16;
public: