From 2b7c35870f7bf0ca7e28f53b322829007c91317e Mon Sep 17 00:00:00 2001 From: tqchen Date: Mon, 13 Apr 2015 13:44:41 -0700 Subject: [PATCH] Squashed 'subtree/rabit/' changes from 18f4d6c..3bf8661 3bf8661 add std before basic git-subtree-dir: subtree/rabit git-subtree-split: 3bf8661ec1109aecd3630c401d98612e41471e7b --- include/dmlc/io.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/dmlc/io.h b/include/dmlc/io.h index 2d12a1157..bd9e127a0 100644 --- a/include/dmlc/io.h +++ b/include/dmlc/io.h @@ -150,7 +150,7 @@ class ostream : public std::basic_ostream { */ explicit ostream(Stream *stream, size_t buffer_size = 1 << 10) - : basic_ostream(NULL), buf_(buffer_size) { + : std::basic_ostream(NULL), buf_(buffer_size) { this->set_stream(stream); } // explictly synchronize the buffer @@ -213,7 +213,7 @@ class istream : public std::basic_istream { */ explicit istream(Stream *stream, size_t buffer_size = 1 << 10) - : basic_istream(NULL), buf_(buffer_size) { + : std::basic_istream(NULL), buf_(buffer_size) { this->set_stream(stream); } virtual ~istream() {}