fixed bug where read would not be called

This commit is contained in:
Bob Polis 2020-03-02 13:45:15 +01:00
parent 2165710720
commit d249f3ae6c

View File

@ -17,6 +17,9 @@
using namespace sc::io;
std::streambuf::int_type fdinbuf::uflow() {
if (_ch == EOF) {
return underflow();
}
return _ch;
}