Deprecates iostream transport readsome in favor of read_some

which is more consistent with the naming of the rest of the library.
This commit is contained in:
Peter Thorson
2013-09-28 07:55:41 -05:00
parent c175ec4f42
commit 3035c8dc0a
3 changed files with 24 additions and 6 deletions

View File

@@ -77,7 +77,7 @@ int main() {
} else {
char a;
while(std::cin.get(a)) {
con->readsome(&a,1);
con->read_some(&a,1);
}
}
} catch (const std::exception & e) {