Merge pull request #1 from zjf/zjf-patch-1

Update data.h
This commit is contained in:
Jianfeng Zhu 2015-04-23 14:22:10 +08:00
commit 11c45e5c60

View File

@ -111,7 +111,7 @@ struct ColBatch : public SparseBatch {
const bst_uint *col_index;
/*! \brief pointer to the column data */
const Inst *col_data;
/*! \brief get i-th row from the batch */
/*! \brief get i-th column from the batch */
inline Inst operator[](size_t i) const {
return col_data[i];
}