Squashed 'subtree/rabit/' changes from 18f4d6c..3bf8661
3bf8661 add std before basic git-subtree-dir: subtree/rabit git-subtree-split: 3bf8661ec1109aecd3630c401d98612e41471e7b
This commit is contained in:
parent
a30045c7cc
commit
2b7c35870f
@ -150,7 +150,7 @@ class ostream : public std::basic_ostream<char> {
|
||||
*/
|
||||
explicit ostream(Stream *stream,
|
||||
size_t buffer_size = 1 << 10)
|
||||
: basic_ostream<char>(NULL), buf_(buffer_size) {
|
||||
: std::basic_ostream<char>(NULL), buf_(buffer_size) {
|
||||
this->set_stream(stream);
|
||||
}
|
||||
// explictly synchronize the buffer
|
||||
@ -213,7 +213,7 @@ class istream : public std::basic_istream<char> {
|
||||
*/
|
||||
explicit istream(Stream *stream,
|
||||
size_t buffer_size = 1 << 10)
|
||||
: basic_istream<char>(NULL), buf_(buffer_size) {
|
||||
: std::basic_istream<char>(NULL), buf_(buffer_size) {
|
||||
this->set_stream(stream);
|
||||
}
|
||||
virtual ~istream() {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user