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");
|
utils::Assert(data_ != NULL, "fail to allocate row batch page");
|
||||||
this->Clear();
|
this->Clear();
|
||||||
}
|
}
|
||||||
~BinaryPage(void) {
|
~RowBatchPage(void) {
|
||||||
if (data_ != NULL) delete [] data_;
|
if (data_ != NULL) delete [] data_;
|
||||||
}
|
}
|
||||||
/*!
|
/*!
|
||||||
|
|||||||
@ -100,6 +100,7 @@ class ISeekStream: public IStream {
|
|||||||
/*! \brief implementation of file i/o stream */
|
/*! \brief implementation of file i/o stream */
|
||||||
class FileStream : public ISeekStream {
|
class FileStream : public ISeekStream {
|
||||||
public:
|
public:
|
||||||
|
explicit FileStream(void) {}
|
||||||
explicit FileStream(FILE *fp) {
|
explicit FileStream(FILE *fp) {
|
||||||
this->fp = fp;
|
this->fp = fp;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user