fixed bug where read would not be called
This commit is contained in:
@ -17,6 +17,9 @@
|
||||
using namespace sc::io;
|
||||
|
||||
std::streambuf::int_type fdinbuf::uflow() {
|
||||
if (_ch == EOF) {
|
||||
return underflow();
|
||||
}
|
||||
return _ch;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user