fix compiler error
This commit is contained in:
parent
ce2d34ecd4
commit
d0e27482ef
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user