Skip to content

Commit

Permalink
fix warning merge
Browse files Browse the repository at this point in the history
  • Loading branch information
cjolivier01 committed Apr 3, 2017
2 parents 63d75ac + deb00d7 commit cde02bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/nnvm/tuple.h
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ class TShape : public Tuple<index_t> {
*/
template<int dim>
inline mshadow::Shape<dim> get() const {
CHECK_EQ(dim, (int)ndim())
CHECK_EQ(dim, static_cast<int>(ndim()))
<< "dimension do not match target dimension " << dim << " vs " << ndim();
const index_t *d = this->data();
mshadow::Shape<dim> s;
Expand Down

0 comments on commit cde02bf

Please sign in to comment.