mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user