remove unnecessary code

This commit is contained in:
KaitoHH 2017-09-29 18:19:41 +08:00
parent 66541b8926
commit 9394b84440

View File

@ -119,8 +119,6 @@ template <typename InputStream, typename Encoding = UTF8<> >
class GenericStreamWrapper {
public:
typedef typename Encoding::Ch Ch;
size_t line_;
size_t col_;
GenericStreamWrapper(InputStream& is): is_(is) {}
Ch Peek() const { return is_.Peek(); }