Skip to content

Commit

Permalink
fix lint (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin authored May 23, 2017
1 parent a03c169 commit eb250de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/operator/tensor/elemwise_unary_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ struct FillRspRowIdx {
struct MarkRspRowIdx {
// i represents the row index of the matrix data
template<typename DType, typename RType>
MSHADOW_XINLINE static void Map(int i, RType* row_idx, const DType* data, const index_t num_cols) {
MSHADOW_XINLINE static void Map(int i, RType* row_idx, const DType* data,
const index_t num_cols) {
index_t j = 0;
index_t offset = i * num_cols;
for (; j < num_cols; ++j) {
Expand Down

0 comments on commit eb250de

Please sign in to comment.