change HtmlTextStream iterators type to pt::WTextStream::iterator

This commit is contained in:
Tomasz Sowa 2022-02-03 20:57:38 +01:00
parent 09cf3c9fa9
commit 234ebf8ce8
1 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,7 @@
*/ */
/* /*
* Copyright (c) 2010-2021, Tomasz Sowa * Copyright (c) 2010-2022, Tomasz Sowa
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -81,9 +81,8 @@ class HtmlTextStream : public pt::Stream
public: public:
typedef wchar_t char_type; typedef wchar_t char_type;
typedef pt::WTextStream::buffer_type buffer_type; typedef pt::WTextStream::iterator iterator;
typedef typename buffer_type::iterator iterator; typedef pt::WTextStream::const_iterator const_iterator;
typedef typename buffer_type::const_iterator const_iterator;
HtmlTextStream(); HtmlTextStream();