fix compiler error
This commit is contained in:
@@ -18,7 +18,7 @@ struct RowBatchPage {
|
||||
utils::Assert(data_ != NULL, "fail to allocate row batch page");
|
||||
this->Clear();
|
||||
}
|
||||
~BinaryPage(void) {
|
||||
~RowBatchPage(void) {
|
||||
if (data_ != NULL) delete [] data_;
|
||||
}
|
||||
/*!
|
||||
|
||||
@@ -100,6 +100,7 @@ class ISeekStream: public IStream {
|
||||
/*! \brief implementation of file i/o stream */
|
||||
class FileStream : public ISeekStream {
|
||||
public:
|
||||
explicit FileStream(void) {}
|
||||
explicit FileStream(FILE *fp) {
|
||||
this->fp = fp;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user