Added a comment to easily diagnose issue #1648

This commit is contained in:
Benoit Blanchon
2021-09-03 08:31:51 +02:00
parent 956e4a7cbb
commit 3428ab1e89

View File

@ -17,7 +17,7 @@ struct Reader {
Reader(TSource& source) : _source(&source) {}
int read() {
return _source->read();
return _source->read(); // Error here? You passed an unsupported input type
}
size_t readBytes(char* buffer, size_t length) {